This commit is contained in:
Denis Zhuravlev 2020-10-19 17:09:10 -03:00
parent f3087c61ad
commit f7f1c1b267
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,6 @@
30
30
10
10
3
3

View File

@ -0,0 +1,16 @@
CREATE TABLE IF NOT EXISTS topXtest(A Int64) ENGINE = Memory;
INSERT INTO topXtest SELECT number FROM numbers(100);
INSERT INTO topXtest SELECT number FROM numbers(30);
INSERT INTO topXtest SELECT number FROM numbers(10);
SELECT length(topK(30)(A)) FROM topXtest;
SELECT length(topK(30)(A)) FROM remote('localhost,127.0.0.1', currentDatabase(), topXtest);
SELECT length(topK(A)) FROM topXtest;
SELECT length(topK(A)) FROM remote('localhost,127.0.0.1', currentDatabase(), topXtest);
SELECT length(topK(3)(A)) FROM topXtest;
SELECT length(topK(3)(A)) FROM remote('localhost,127.0.0.1', currentDatabase(), topXtest);
DROP TABLE topXtest;