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
CREATETABLEtpch.test (
`a`text,
`b`text CHARACTER SET utf8,
`c`text CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL
);
The connector returns the expected column definitions when we create the table on SingleStore version 7.1.13.
trino:tpch> DESC test;
Column | Type | Extra | Comment
--------+----------------+-------+---------
a | varchar(65535) ||
b | varchar(65535) ||
c | varchar(65535) ||
However, the connector returns the wrong column definitions when we create the table on SingleStore version 8.7.16.
trino:tpch> DESC test;
Column | Type | Extra | Comment
--------+----------------+-------+---------
a | varchar(16383) ||
b | varchar(21845) ||
c | varchar(21845) ||
CREATE TABLE statement for SingleStore:
The connector returns the expected column definitions when we create the table on SingleStore version 7.1.13.
However, the connector returns the wrong column definitions when we create the table on SingleStore version 8.7.16.
https://docs.singlestore.com/cloud/reference/sql-reference/data-types/string-types/
The text was updated successfully, but these errors were encountered: