mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Add test on "analyze" query
This commit is contained in:
parent
0a443399a0
commit
c035d853a5
@ -0,0 +1 @@
|
||||
SELECT \n a, \n b\nFROM test.a
|
8
dbms/tests/queries/0_stateless/00908_analyze_query.sql
Normal file
8
dbms/tests/queries/0_stateless/00908_analyze_query.sql
Normal file
@ -0,0 +1,8 @@
|
||||
set enable_debug_queries = 1;
|
||||
|
||||
DROP TABLE IF EXISTS test.a;
|
||||
CREATE TABLE test.a (a UInt8, b UInt8) ENGINE MergeTree ORDER BY a;
|
||||
|
||||
ANALYZE SELECT * FROM test.a;
|
||||
|
||||
DROP TABLE test.a;
|
Loading…
Reference in New Issue
Block a user