ClickHouse/tests/queries/0_stateless/02426_create_suspicious_fixed_string.sql
2022-09-19 15:00:04 +08:00

5 lines
365 B
SQL

CREATE TABLE fixed_string (id UInt64, s FixedString(256)) ENGINE = MergeTree() ORDER BY id;
CREATE TABLE suspicious_fixed_string (id UInt64, s FixedString(257)) ENGINE = MergeTree() ORDER BY id; -- { serverError 44 }
SET allow_suspicious_fixed_string_types = 1;
CREATE TABLE suspicious_fixed_string (id UInt64, s FixedString(257)) ENGINE = MergeTree() ORDER BY id;