ClickHouse/dbms/tests/queries/0_stateless/00563_insert_into_remote_and_zookeeper.sql
2018-02-21 16:52:17 +03:00

14 lines
703 B
SQL

-- Check that settings are correctly passed through Distributed table
DROP TABLE IF EXISTS test.simple;
CREATE TABLE test.simple (d Int8) ENGINE = ReplicatedMergeTree('/clickhouse/test/tables/test/simple', '1') ORDER BY d;
-- TODO: replace '127.0.0.2' -> '127.0.0.1' after a fix
INSERT INTO TABLE FUNCTION remote('127.0.0.2', 'test', 'simple') VALUES (1);
INSERT INTO TABLE FUNCTION remote('127.0.0.2', 'test', 'simple') VALUES (1);
SET insert_deduplicate=0;
INSERT INTO TABLE FUNCTION remote('127.0.0.2', 'test', 'simple') VALUES (2);
INSERT INTO TABLE FUNCTION remote('127.0.0.2', 'test', 'simple') VALUES (2);
SELECT * FROM remote('127.0.0.2', 'test', 'simple') ORDER BY d;
DROP TABLE test.simple;