mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
dbms: added test (now broken) [#METR-15167].
This commit is contained in:
parent
6ee73f0e05
commit
3e1dafe3cb
18
dbms/tests/queries/0_stateless/00130_buffer_and_prewhere.sql
Normal file
18
dbms/tests/queries/0_stateless/00130_buffer_and_prewhere.sql
Normal file
@ -0,0 +1,18 @@
|
||||
DROP TABLE IF EXISTS test.mt;
|
||||
DROP TABLE IF EXISTS test.buf;
|
||||
|
||||
CREATE TABLE test.mt (a UInt8, d Date) ENGINE = MergeTree(d, a, 1);
|
||||
CREATE TABLE test.buf AS test.mt ENGINE = Buffer(test, mt, 1, 100, 100, 1000000, 1000000, 1000000000, 1000000000);
|
||||
|
||||
INSERT INTO test.buf SELECT toUInt8(number) AS a, toDate('2015-01-01') AS d FROM system.numbers LIMIT 1000;
|
||||
SELECT count() FROM test.mt;
|
||||
SELECT count() FROM test.buf;
|
||||
SELECT * FROM test.buf PREWHERE a < 10;
|
||||
|
||||
OPTIMIZE TABLE test.buf;
|
||||
SELECT count() FROM test.mt;
|
||||
SELECT count() FROM test.buf;
|
||||
SELECT * FROM test.buf PREWHERE a < 10;
|
||||
|
||||
DROP TABLE test.buf;
|
||||
DROP TABLE test.mt;
|
Loading…
Reference in New Issue
Block a user