Merge branch 'master' of github.com:yandex/ClickHouse

This commit is contained in:
Alexey Milovidov 2019-06-13 13:38:48 +03:00
commit d32ea4d06b

View File

@ -207,6 +207,11 @@ static bool isSupportedAlterType(int type)
ASTAlterCommand::DROP_PARTITION,
ASTAlterCommand::DELETE,
ASTAlterCommand::UPDATE,
ASTAlterCommand::COMMENT_COLUMN,
ASTAlterCommand::MODIFY_ORDER_BY,
ASTAlterCommand::MODIFY_TTL,
ASTAlterCommand::ADD_INDEX,
ASTAlterCommand::DROP_INDEX,
};
return supported_alter_types.count(type) != 0;