You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implements comprehensive integration test for list_offsets functionality
covering earliest and latest offset queries before and after appending records.
Changes:
- Added list_offsets test with multiple scenarios:
- List earliest offset on empty table (expected: 0)
- List latest offset on empty table (expected: 0)
- Append 3 records and verify latest offset updates to 3
- Verify earliest offset remains 0 after append
- Test multi-bucket offset listing
- Added OffsetSpec import for specifying offset types
- Added table initialization delay to ensure table is ready
Test validates that list_offsets correctly tracks record positions
in the log and responds appropriately to Earliest and Latest queries.
Fixes#47
0 commit comments