mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added test #1947
This commit is contained in:
parent
c42d3ac17f
commit
4c87ae427d
@ -0,0 +1,5 @@
|
||||
1 hello
|
||||
1 hello
|
||||
1 hello
|
||||
1 hello
|
||||
1 hello
|
@ -0,0 +1,15 @@
|
||||
DROP TABLE IF EXISTS test.mergetree;
|
||||
DROP TABLE IF EXISTS test.distributed;
|
||||
|
||||
CREATE TABLE test.mergetree (x UInt64, s String) ENGINE = MergeTree ORDER BY x;
|
||||
INSERT INTO test.mergetree VALUES (1, 'hello'), (2, 'world');
|
||||
|
||||
SELECT * FROM test.mergetree PREWHERE x = 1 WHERE s LIKE '%l%' ORDER BY x, s;
|
||||
SELECT * FROM remote('127.0.0.{1,2,3}', test.mergetree) PREWHERE x = 1 WHERE s LIKE '%l%' ORDER BY x, s;
|
||||
|
||||
CREATE TABLE test.distributed AS test.mergetree ENGINE = Distributed(test_shard_localhost, test, mergetree);
|
||||
|
||||
SELECT * FROM test.distributed PREWHERE x = 1 WHERE s LIKE '%l%' ORDER BY x, s;
|
||||
|
||||
DROP TABLE test.mergetree;
|
||||
DROP TABLE test.distributed;
|
Loading…
Reference in New Issue
Block a user