Skip to content

Commit

Permalink
Fix integration with Spark for array string type (#1506)
Browse files Browse the repository at this point in the history
  • Loading branch information
phanhuyn authored Jan 8, 2024
1 parent 8f8c306 commit 390172c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public enum ClickHouseDataType {
Ring(Object.class, false, true, true, 0, 0, 0, 0, 0, true), // same as Array(Point)
JSON(Object.class, false, false, false, 0, 0, 0, 0, 0, true), // same as Object('JSON')
Object(Object.class, true, true, false, 0, 0, 0, 0, 0, true),
String(String.class, false, true, false, 0, 0, 0, 0, 0, false, "BINARY LARGE OBJECT", "BINARY VARYING", "BLOB",
String(String.class, false, false, false, 0, 0, 0, 0, 0, false, "BINARY LARGE OBJECT", "BINARY VARYING", "BLOB",
"BYTEA", "CHAR", "CHAR LARGE OBJECT", "CHAR VARYING", "CHARACTER", "CHARACTER LARGE OBJECT",
"CHARACTER VARYING", "CLOB", "GEOMETRY", "LONGBLOB", "LONGTEXT", "MEDIUMBLOB", "MEDIUMTEXT",
"NATIONAL CHAR", "NATIONAL CHAR VARYING", "NATIONAL CHARACTER", "NATIONAL CHARACTER LARGE OBJECT",
Expand Down

0 comments on commit 390172c

Please sign in to comment.