This is an automated email from the ASF dual-hosted git repository. jshao pushed a commit to branch branch-gvfs-fuse-dev in repository https://gitbox.apache.org/repos/asf/gravitino.git
commit 2d3c1001225b20ed3fa0ea97f4d3476a4b72843d Author: Kerwin <[email protected]> AuthorDate: Wed Dec 4 10:03:58 2024 +0800 [MINOR] fix(doc): Fix the binary data type mapping error of the gravitino and paimon tables in the paimon catalog document. (#5741) ### What changes were proposed in this pull request? Fix the binary data type mapping error of the gravitino and paimon tables in the paimon catalog document. --- docs/lakehouse-paimon-catalog.md | 44 ++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/docs/lakehouse-paimon-catalog.md b/docs/lakehouse-paimon-catalog.md index 8cb870552..61b1449e9 100644 --- a/docs/lakehouse-paimon-catalog.md +++ b/docs/lakehouse-paimon-catalog.md @@ -154,28 +154,28 @@ Paimon Table primary key constraint should not be same with partition fields, th ### Table column types -| Gravitino Type | Apache Paimon Type | -|-----------------------------|--------------------------------| -| `Struct` | `Row` | -| `Map` | `Map` | -| `List` | `Array` | -| `Boolean` | `Boolean` | -| `Byte` | `TinyInt` | -| `Short` | `SmallInt` | -| `Integer` | `Int` | -| `Long` | `BigInt` | -| `Float` | `Float` | -| `Double` | `Double` | -| `Decimal` | `Decimal` | -| `String` | `VarChar(Integer.MAX_VALUE)` | -| `VarChar` | `VarChar` | -| `FixedChar` | `Char` | -| `Date` | `Date` | -| `Time` | `Time` | -| `TimestampType withZone` | `LocalZonedTimestamp` | -| `TimestampType withoutZone` | `Timestamp` | -| `Binary` | `Binary` | -| `Fixed` | `VarBinary` | +| Gravitino Type | Apache Paimon Type | +|-----------------------------|------------------------------| +| `Struct` | `Row` | +| `Map` | `Map` | +| `List` | `Array` | +| `Boolean` | `Boolean` | +| `Byte` | `TinyInt` | +| `Short` | `SmallInt` | +| `Integer` | `Int` | +| `Long` | `BigInt` | +| `Float` | `Float` | +| `Double` | `Double` | +| `Decimal` | `Decimal` | +| `String` | `VarChar(Integer.MAX_VALUE)` | +| `VarChar` | `VarChar` | +| `FixedChar` | `Char` | +| `Date` | `Date` | +| `Time` | `Time` | +| `TimestampType withZone` | `LocalZonedTimestamp` | +| `TimestampType withoutZone` | `Timestamp` | +| `Fixed` | `Binary` | +| `Binary` | `VarBinary` | :::info Gravitino doesn't support Paimon `MultisetType` type.
