respect prefer_locahost_replica=0 in parallel_distributed_insert_select

This commit is contained in:
filimonov 2024-11-20 21:55:30 +01:00 committed by GitHub
parent 40c7d5fd1a
commit 58a4c128d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1030,7 +1030,7 @@ std::optional<QueryPipeline> StorageDistributed::distributedWriteBetweenDistribu
for (size_t shard_index : collections::range(0, shards_info.size())) for (size_t shard_index : collections::range(0, shards_info.size()))
{ {
const auto & shard_info = shards_info[shard_index]; const auto & shard_info = shards_info[shard_index];
if (shard_info.isLocal()) if (shard_info.isLocal() && settings.prefer_localhost_replica)
{ {
InterpreterInsertQuery interpreter( InterpreterInsertQuery interpreter(
new_query, new_query,