ClickHouse/tests/queries/0_stateless/02001_shard_num_shard_count.sql

4 lines
295 B
MySQL
Raw Normal View History

select shardNum() n, shardCount() c;
select shardNum() n, shardCount() c from remote('127.0.0.{1,2,3}', system.one) order by n settings prefer_localhost_replica = 0;
select shardNum() n, shardCount() c from remote('127.0.0.{1,2,3}', system.one) order by n settings prefer_localhost_replica = 1;