Fixed null pointer exception in MATERIALIZE COLUMN.

This commit is contained in:
Vladimir Chebotarev 2021-11-24 09:17:43 +03:00
parent 32911193de
commit 4f7f9795a1

View File

@ -569,6 +569,11 @@ ASTPtr MutationsInterpreter::prepare(bool dry_run)
stages.emplace_back(context);
const auto & column = columns_desc.get(command.column_name);
if (column.default_desc.kind != ColumnDefaultKind::Materialized)
{
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Column {} could not be materialized", column.name);
}
stages.back().column_to_updated.emplace(column.name, column.default_desc.expression->clone());
}
else if (command.type == MutationCommand::MATERIALIZE_INDEX)