mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 18:42:26 +00:00
8 lines
335 B
SQL
8 lines
335 B
SQL
DROP TABLE IF EXISTS 03199_fixedstring_array;
|
|
CREATE TABLE 03199_fixedstring_array (arr Array(LowCardinality(FixedString(8)))) ENGINE = Memory;
|
|
INSERT INTO 03199_fixedstring_array VALUES (['a', 'b']), (['c', 'd']);
|
|
|
|
SELECT has(arr, toFixedString(materialize('a'), 1)) FROM 03199_fixedstring_array;
|
|
|
|
DROP TABLE 03199_fixedstring_array;
|