Merge pull request #23177 from marsno1/fix-exception-log

Fix exception message for "parts_to_throw_insert"
This commit is contained in:
tavplubix 2021-04-16 18:15:07 +03:00 committed by GitHub
commit 3d1885f08c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2563,7 +2563,7 @@ void MergeTreeData::delayInsertOrThrowIfNeeded(Poco::Event * until) const
ProfileEvents::increment(ProfileEvents::RejectedInserts);
throw Exception(
ErrorCodes::TOO_MANY_PARTS,
"Too many parts ({}). Parts cleaning are processing significantly slower than inserts",
"Too many parts ({}). Merges are processing significantly slower than inserts",
parts_count_in_partition);
}