mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
16 lines
700 B
SQL
16 lines
700 B
SQL
DROP TABLE IF EXISTS mergetree_00588;
|
|
DROP TABLE IF EXISTS distributed_00588;
|
|
|
|
CREATE TABLE mergetree_00588 (x UInt64, s String) ENGINE = MergeTree ORDER BY x;
|
|
INSERT INTO mergetree_00588 VALUES (1, 'hello'), (2, 'world');
|
|
|
|
SELECT * FROM mergetree_00588 PREWHERE x = 1 WHERE s LIKE '%l%' ORDER BY x, s;
|
|
SELECT * FROM remote('127.0.0.{1,2,3}', currentDatabase(), mergetree_00588) PREWHERE x = 1 WHERE s LIKE '%l%' ORDER BY x, s;
|
|
|
|
CREATE TABLE distributed_00588 AS mergetree_00588 ENGINE = Distributed(test_shard_localhost, currentDatabase(), mergetree_00588);
|
|
|
|
SELECT * FROM distributed_00588 PREWHERE x = 1 WHERE s LIKE '%l%' ORDER BY x, s;
|
|
|
|
DROP TABLE mergetree_00588;
|
|
DROP TABLE distributed_00588;
|