Fixed merge issue

This commit is contained in:
Alfonso Martinez 2022-12-09 09:30:20 +01:00
parent 8bddf1c638
commit 9654e06ec8

View File

@ -311,10 +311,9 @@ Chain buildPushingToViewsChain(
if (lock == nullptr) if (lock == nullptr)
{ {
// In case the materialized view is dropped at this point, we register a warning and ignore it // In case the materialized view is dropped at this point, we register a warning and ignore it
assert(materialized_view->is_dropped) LOG_WARNING( assert(materialized_view->is_dropped);
&Poco::Logger::get("PushingToViews"), LOG_WARNING(
"Trying to access table {} but it doesn't exist", &Poco::Logger::get("PushingToViews"), "Trying to access table {} but it doesn't exist", view_id.getFullTableName());
database_table.getFullTableName());
continue; continue;
} }