Revert "Fixed null pointer exception in MATERIALIZE COLUMN"

This commit is contained in:
tavplubix 2021-11-24 14:56:12 +03:00 committed by GitHub
parent 240fb612c8
commit 04b98ee1d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -569,11 +569,6 @@ 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)