From f825961ecf1fae3b532e2b343174185531fb1353 Mon Sep 17 00:00:00 2001 From: Gang Wu Date: Wed, 4 Dec 2024 18:00:40 +0800 Subject: [PATCH] add example for rule 5 --- LogicalTypes.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/LogicalTypes.md b/LogicalTypes.md index 21a92b29..72940152 100644 --- a/LogicalTypes.md +++ b/LogicalTypes.md @@ -763,6 +763,13 @@ optional group my_list (LIST) { required binary str (STRING); }; } + +// Rule 5: List (nullable list, nullable elements) +optional group my_list (LIST) { + repeated group element { + optional binary str (STRING); + }; +} ``` ### Maps