Cosmetics

This commit is contained in:
Robert Schulze 2023-04-24 10:21:54 +00:00
parent 744e7c7601
commit 0e1b2ce248
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -1,4 +1,3 @@
-----------------------------------------------------------
-- Check CREATE TABLE
DROP TABLE IF EXISTS tbl;
@ -9,7 +8,6 @@ DROP TABLE IF EXISTS tbl;
CREATE TABLE tbl (id UInt32, INDEX idx (id + 1, id + 1) TYPE minmax) ENGINE = MergeTree() ORDER BY id; -- { serverError BAD_ARGUMENTS }
CREATE TABLE tbl (id UInt32, INDEX idx (id + 1, id + 1) TYPE minmax) ENGINE = MergeTree() ORDER BY id SETTINGS allow_suspicious_indices = 1;
-----------------------------------------------------------
-- Check ALTER TABLE
DROP TABLE IF EXISTS tbl;