You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: catalogs/catalog-jdbc-mysql/src/main/java/org/apache/gravitino/catalog/mysql/converter/MysqlTypeConverter.java
Copy file name to clipboardexpand all lines: catalogs/catalog-jdbc-mysql/src/test/java/org/apache/gravitino/catalog/mysql/integration/test/CatalogMysqlIT.java
Copy file name to clipboardexpand all lines: catalogs/catalog-jdbc-mysql/src/test/java/org/apache/gravitino/catalog/mysql/operation/TestMysqlTableOperations.java
-1
Original file line number
Diff line number
Diff line change
@@ -712,7 +712,6 @@ public void testCreateNotSupportTypeTable() {
Copy file name to clipboardexpand all lines: docs/jdbc-mysql-catalog.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -107,9 +107,10 @@ Refer to [Manage Relational Metadata Using Gravitino](./manage-relational-metada
107
107
|`VarChar`|`VarChar`|
108
108
|`FixedChar`|`FixedChar`|
109
109
|`Binary`|`Binary`|
110
+
|`BOOLEAN`|`BIT`|
110
111
111
112
:::info
112
-
MySQL doesn't support Gravitino `Boolean``Fixed``Struct``List``Map``Timestamp_tz``IntervalDay``IntervalYear``Union``UUID` type.
113
+
MySQL doesn't support Gravitino `Fixed``Struct``List``Map``Timestamp_tz``IntervalDay``IntervalYear``Union``UUID` type.
113
114
Meanwhile, the data types other than listed above are mapped to Gravitino **[External Type](./manage-relational-metadata-using-gravitino.md#external-type)** that represents an unresolvable data type since 0.6.0-incubating.
Copy file name to clipboardexpand all lines: trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/jdbc-mysql/00006_datatype.sql
Copy file name to clipboardexpand all lines: trino-connector/integration-test/src/test/resources/trino-ci-testset/testsets/jdbc-mysql/00006_datatype.txt
+4-2
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ CREATE TABLE
11
11
f4 decimal(10, 3),
12
12
f5 real,
13
13
f6 double,
14
+
f7 boolean,
14
15
f8 tinyint,
15
16
f9 smallint,
16
17
f10 integer,
@@ -30,8 +31,8 @@ INSERT: 1 row
30
31
31
32
INSERT: 1 row
32
33
33
-
"Sample text 1","Text1 ","65","123.456","7.89","12.34","1","100","1000","1000","100000","2024-01-01","08:00:00","2024-01-01 08:00:00","2024-01-01 08:00:00 UTC"
34
-
"","","","","","","","","","","","","","",""
34
+
"Sample text 1","Text1 ","65","123.456","7.89","12.34","false","1","100","1000","1000","100000","2024-01-01","08:00:00","2024-01-01 08:00:00","2024-01-01 08:00:00 UTC"
0 commit comments