ClickHouse/tests/queries/0_stateless/00140_prewhere_column_order.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
440 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS prewhere;
2015-04-02 03:29:42 +00:00
2022-06-23 08:37:52 +00:00
set allow_deprecated_syntax_for_merge_tree=1;
CREATE TABLE prewhere (d Date, a String, b String) ENGINE = MergeTree(d, d, 8192);
INSERT INTO prewhere VALUES ('2015-01-01', 'hello', 'world');
2015-04-02 03:29:42 +00:00
ALTER TABLE prewhere ADD COLUMN a1 String AFTER a;
INSERT INTO prewhere VALUES ('2015-01-01', 'hello1', 'xxx', 'world1');
2015-04-02 03:29:42 +00:00
SELECT d, a, a1, b FROM prewhere PREWHERE a LIKE 'hello%' ORDER BY a1;
2015-04-02 03:29:42 +00:00
DROP TABLE prewhere;