Skip to content

Commit

Permalink
ARROW-324: Update arrow metadata diagram
Browse files Browse the repository at this point in the history
Author: Julien Le Dem <julien@dremio.com>

Closes #161 from julienledem/diagram and squashes the following commits:

f018cf5 [Julien Le Dem] ARROW-324: Update arrow metadata diagram
  • Loading branch information
julienledem committed Oct 7, 2016
1 parent f1a4bd1 commit 3f85cee
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
Binary file modified format/Arrow.graffle
Binary file not shown.
Binary file modified format/Arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions format/Metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,17 @@ table Field {
name: string;
nullable: bool;
type: Type;
// present only if the field is dictionary encoded
// will point to a dictionary provided by a DictionaryBatch message
dictionary: long;
// children apply only to Nested data types like Struct, List and Union
children: [Field];
/// layout of buffers produced for this type (as derived from the Type)
/// does not include children
/// each recordbatch will return instances of those Buffers.
layout: [ VectorLayout ];
// User-defined metadata
custom_metadata: [ KeyValue ];
}
```

Expand Down

0 comments on commit 3f85cee

Please sign in to comment.