This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-format.git
The following commit(s) were added to refs/heads/master by this push:
new d20f9dd Correct VARIANT Logical Type annotation in Parquet examples
(#555)
d20f9dd is described below
commit d20f9dd3d8e7663c44586f7dfb9b7a0534808c87
Author: Andrew Lamb <[email protected]>
AuthorDate: Wed Mar 11 13:38:14 2026 -0400
Correct VARIANT Logical Type annotation in Parquet examples (#555)
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;