Skip to content

Commit

Permalink
add example for rule 5
Browse files Browse the repository at this point in the history
  • Loading branch information
wgtmac committed Dec 4, 2024
1 parent 47ed28e commit f825961
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions LogicalTypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -763,6 +763,13 @@ optional group my_list (LIST) {
required binary str (STRING);
};
}
// Rule 5: List<String> (nullable list, nullable elements)
optional group my_list (LIST) {
repeated group element {
optional binary str (STRING);
};
}
```

### Maps
Expand Down

0 comments on commit f825961

Please sign in to comment.