Added test.

This commit is contained in:
Nikolai Kochetov 2019-08-01 21:44:23 +03:00
parent a8378e8ef0
commit c11e04f9d9
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,6 @@
DROP TABLE IF EXISTS han_1;
CREATE TABLE han_1 (k Int32, date_dt LowCardinality(Nullable(String)))
ENGINE = MergeTree() PARTITION BY k ORDER BY k;
INSERT INTO han_1 values (1, '2019-07-31');
SELECT k, uniq(date_dt) FROM remote('127.0.0.{1,2}', currentDatabase(), han_1) GROUP BY k;
DROP TABLE IF EXISTS han_1;