We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1a4bd1 commit f018cf5Copy full SHA for f018cf5
format/Arrow.graffle
496 Bytes
format/Arrow.png
25.5 KB
format/Metadata.md
@@ -46,7 +46,17 @@ table Field {
46
name: string;
47
nullable: bool;
48
type: Type;
49
+ // present only if the field is dictionary encoded
50
+ // will point to a dictionary provided by a DictionaryBatch message
51
+ dictionary: long;
52
+ // children apply only to Nested data types like Struct, List and Union
53
children: [Field];
54
+ /// layout of buffers produced for this type (as derived from the Type)
55
+ /// does not include children
56
+ /// each recordbatch will return instances of those Buffers.
57
+ layout: [ VectorLayout ];
58
+ // User-defined metadata
59
+ custom_metadata: [ KeyValue ];
60
}
61
```
62
0 commit comments