ClickHouse/tests/queries/0_stateless/00908_analyze_query.sql

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

7 lines
135 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS a;
CREATE TABLE a (a UInt8, b UInt8) ENGINE MergeTree ORDER BY a;
2019-02-14 13:13:29 +00:00
EXPLAIN SYNTAX SELECT * FROM a;
2019-02-14 13:13:29 +00:00
DROP TABLE a;