Made mutation to choose the same disk in ReplicatedMergeTree.

This commit is contained in:
Vladimir Chebotarev 2019-10-31 15:22:25 +03:00 committed by GitHub
parent 0d2a2c332f
commit f44cee623a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1139,7 +1139,7 @@ bool StorageReplicatedMergeTree::tryExecutePartMutation(const StorageReplicatedM
MutationCommands commands = queue.getMutationCommands(source_part, new_part_info.mutation);
/// Can throw an exception.
DiskSpace::ReservationPtr reserved_space = reserveSpace(estimated_space_for_result);
DiskSpace::ReservationPtr reserved_space = source_part->disk->reserveSpace(estimated_space_for_result);
auto table_lock = lockStructureForShare(false, RWLockImpl::NO_QUERY);