This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 14df346313 [docs] Fix broken Parquet Variant encoding link in PyPaimon
data types (#10090)
14df346313 is described below
commit 14df346313be47f68a5dba670fbb2f75db15192d
Author: kikikkii <[email protected]>
AuthorDate: Thu Sep 24 14:39:38 2026 +0800
[docs] Fix broken Parquet Variant encoding link in PyPaimon data types
(#10090)
---
docs/docs/pypaimon/data-types.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/docs/pypaimon/data-types.md b/docs/docs/pypaimon/data-types.md
index dd4537a924..535bdd6833 100644
--- a/docs/docs/pypaimon/data-types.md
+++ b/docs/docs/pypaimon/data-types.md
@@ -61,7 +61,7 @@ Use these mappings when defining a `pyarrow.Schema` for a
Paimon table. See [Cat
## VARIANT Type
`VARIANT` stores semi-structured, schema-flexible data (JSON objects, arrays,
and primitives)
-in the [Parquet Variant binary
encoding](https://github.com/apache/parquet-format/blob/master/VariantEncoding).
+in the [Parquet Variant binary
encoding](https://github.com/apache/parquet-format/blob/master/VariantEncoding.md).
pypaimon exposes VARIANT columns as Arrow `struct<value: binary NOT NULL,
metadata: binary NOT NULL>` and
provides `GenericVariant` for encoding and decoding.