This is an automated email from the ASF dual-hosted git repository. alamb pushed a commit to branch alamb-patch-1 in repository https://gitbox.apache.org/repos/asf/parquet-format.git
commit 6d8537f39f3e9912909348bb5312b94f3056e245 Author: Andrew Lamb <[email protected]> AuthorDate: Wed Feb 25 16:30:10 2026 -0500 Correct VARIANT Logical Type annotation in Parquet examples Updated the representation of unshredded and shredded Variants in Parquet to include the variant version --- LogicalTypes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LogicalTypes.md b/LogicalTypes.md index e7a0ce0..78fdf29 100644 --- a/LogicalTypes.md +++ b/LogicalTypes.md @@ -584,7 +584,7 @@ value, or a shredded Variant value. This is the expected representation of an unshredded Variant in Parquet: ``` -optional group variant_unshredded (VARIANT) { +optional group variant_unshredded (VARIANT(1)) { required binary metadata; required binary value; } @@ -592,7 +592,7 @@ optional group variant_unshredded (VARIANT) { This is an example representation of a shredded Variant in Parquet: ``` -optional group variant_shredded (VARIANT) { +optional group variant_shredded (VARIANT(1)) { required binary metadata; optional binary value; optional int64 typed_value;
