move comment

This commit is contained in:
Anton Popov 2021-06-21 18:31:18 +03:00
parent 662d5b8495
commit 880ed24565
2 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,6 @@ ASTPtr MutationsInterpreter::prepare(bool dry_run)
validateUpdateColumns(storage, metadata_snapshot, updated_columns, column_to_affected_materialized);
}
/// Columns, that we need to read for calculation of skip indices, projections or TTL expressions.
dependencies = getAllColumnDependencies(metadata_snapshot, updated_columns);
/// First, break a sequence of commands into stages.

View File

@ -151,6 +151,7 @@ private:
MutationKind mutation_kind; /// Do we meet any index or projection mutation.
/// Columns, that we need to read for calculation of skip indices, projections or TTL expressions.
ColumnDependencies dependencies;
};