Skip to content

Commit

Permalink
Update standard_storage_manager.ksy
Browse files Browse the repository at this point in the history
Fixed typo in bucket header.
  • Loading branch information
jrhosk authored Nov 5, 2024
1 parent b910a1a commit 8ffbe9a
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/tablestream/templates/standard_storage_manager.ksy
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,22 @@ types:

string_bucket_header:
seq:
id: free_bucket_list
type: u4
id: n_bytes_used
type: u4
doc: |
The number of bytes used, including gaps.
id: n_deleted
type: u4
doc: |
Total length of the gaps arising from deletion or updating with a
shorter string.
id: next_bucket
type: u4
doc: |
The bucket containing the continuation of the last string in the bucket.
If value is -1 there is no continuation.
- id: free_bucket_list
type: u4
- id: n_bytes_used
type: u4
doc: |
The number of bytes used, including gaps.
- id: n_deleted
type: u4
doc: |
Total length of the gaps arising from deletion or updating with a
shorter string.
- id: next_bucket
type: u4
doc: |
The bucket containing the continuation of the last string in the bucket.
If value is -1 there is no continuation.
one_col:
Expand Down Expand Up @@ -119,4 +119,4 @@ types:
enums:
is_endian:
0: false
1: true
1: true

0 comments on commit 8ffbe9a

Please sign in to comment.