dbms: updated test [#METR-17536].

This commit is contained in:
Alexey Milovidov 2015-09-08 23:20:39 +03:00
parent a476396e70
commit a3588ad5ff
2 changed files with 3 additions and 0 deletions

View File

@ -102,3 +102,5 @@ SELECT sum(c = 1) IN (0, 10), sum(c = 2) IN (0, 5), sum(c) = 10 FROM (SELECT num
SELECT sum(c = 1) IN (0, 10), sum(c = 2) IN (0, 5), sum(c) = 10 FROM (SELECT number, count() AS c FROM remote('127.0.0.{1,2}', test.numbers_10) WHERE number < (randConstant() % 2 ? 5 : 10) AND number >= (randConstant() % 2 ? 0 : 5) GROUP BY number);
DROP TABLE test.numbers_10;
SELECT count() FROM remote('127.0.0.{1,2}', system.one);