This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new ed1bad0cb [MINOR] fix(doc): Fix the binary data type mapping error of
the gravitino and paimon tables in the paimon catalog document. (#5741)
ed1bad0cb is described below
commit ed1bad0cb0a949eafbd0434f669bbc49297511f0
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.