Skip to content

Commit

Permalink
remove illegal example
Browse files Browse the repository at this point in the history
  • Loading branch information
wgtmac committed Nov 15, 2024
1 parent d0a7212 commit 76c3a8d
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions LogicalTypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -620,9 +620,9 @@ repeated group my_list {
}
```

Implementations should use either `LIST` and `MAP` annotations _or_ unannotated
repeated fields, but not both. When using the annotations, no unannotated
repeated types are allowed.
For all fields in the schema, implementations should use either `LIST` and
`MAP` annotations _or_ unannotated repeated fields, but not both. When using
the annotations, no unannotated repeated types are allowed.

### Lists

Expand Down Expand Up @@ -765,13 +765,6 @@ optional group my_list (LIST) {
required binary str (STRING);
};
}
// Rule 5: List<OneTuple<List<Integer>>> (nullable outer list, non-null elements)
optional group my_list (LIST) {
repeated group foo {
repeated int32 bar;
};
}
```

### Maps
Expand Down

0 comments on commit 76c3a8d

Please sign in to comment.