Skip to content

Commit 7e89388

Browse files
Add ListView and LargeListView type enum entries
Add type 25 (ListView) and 26 (LargeListView) to the Type enum.
1 parent a24ac2d commit 7e89388

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/enum.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ export enum Type {
7272
LargeUtf8 = 20, /** Large variable-length string as List<Char> */
7373
BinaryView = 23, /** Variable-length binary values backed by inline-or-referenced views */
7474
Utf8View = 24, /** Variable-length UTF8 string values backed by inline-or-referenced views */
75+
ListView = 25, /** Variable-length list values backed by entry views */
76+
LargeListView = 26, /** Large variable-length list values backed by entry views */
7577

7678
Dictionary = -1, /** Dictionary aka Category type */
7779
Int8 = -2,

0 commit comments

Comments
 (0)