Update src/Interpreters/DatabaseCatalog.cpp

This commit is contained in:
alesapin 2024-07-31 17:18:55 +02:00 committed by GitHub
parent c3c653e769
commit 19cd000003
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1406,7 +1406,7 @@ void DatabaseCatalog::waitTableFinallyDropped(const UUID & uuid)
return !tables_marked_dropped_ids.contains(uuid) || is_shutting_down;
});
LOG_DEBUG(log, "Done waiting for the table {} to be dropped. The outcome: {}", toString(uuid), tables_marked_dropped_ids).contains(uuid) ? "table still exists" : "table dropped successfully");
LOG_DEBUG(log, "Done waiting for the table {} to be dropped. The outcome: {}", toString(uuid), tables_marked_dropped_ids.contains(uuid) ? "table still exists" : "table dropped successfully");
/// TSA doesn't support unique_lock
if (TSA_SUPPRESS_WARNING_FOR_READ(tables_marked_dropped_ids).contains(uuid))