mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
respect prefer_locahost_replica=0 in parallel_distributed_insert_select
This commit is contained in:
parent
40c7d5fd1a
commit
58a4c128d4
@ -1030,7 +1030,7 @@ std::optional<QueryPipeline> StorageDistributed::distributedWriteBetweenDistribu
|
||||
for (size_t shard_index : collections::range(0, shards_info.size()))
|
||||
{
|
||||
const auto & shard_info = shards_info[shard_index];
|
||||
if (shard_info.isLocal())
|
||||
if (shard_info.isLocal() && settings.prefer_localhost_replica)
|
||||
{
|
||||
InterpreterInsertQuery interpreter(
|
||||
new_query,
|
||||
|
Loading…
Reference in New Issue
Block a user