Better test.

This commit is contained in:
Nikolai Kochetov 2023-11-14 18:02:21 +00:00
parent 0a628de87c
commit e2b244c974
2 changed files with 2 additions and 0 deletions

View File

@ -2,5 +2,6 @@
100
100
100
300
100
100

View File

@ -5,6 +5,7 @@ CREATE TABLE d_numbers (number UInt32) ENGINE = Distributed(test_cluster_two_sha
SELECT '100' AS number FROM d_numbers AS n WHERE n.number = 100 LIMIT 2;
SELECT '100' AS number FROM d_numbers AS n WHERE n.number = 100 LIMIT 2 SETTINGS max_threads = 1, prefer_localhost_replica=1;
SELECT sum(number) FROM (select * from remote('127.0.0.{1,1,1}', system.numbers) AS n WHERE n.number = 100 LIMIT 3) SETTINGS max_threads = 2, prefer_localhost_replica=1;
SET distributed_product_mode = 'local';