ClickHouse/src/Parsers/ParserAlterQuery.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

1044 lines
40 KiB
C++
Raw Normal View History

#include <Common/typeid_cast.h>
#include <Parsers/ParserStringAndSubstitution.h>
#include <Parsers/ParserAlterQuery.h>
#include <Parsers/CommonParsers.h>
#include <Parsers/ExpressionElementParsers.h>
#include <Parsers/ExpressionListParsers.h>
#include <Parsers/ParserCreateQuery.h>
#include <Parsers/ParserPartition.h>
2023-11-29 02:32:41 +00:00
#include <Parsers/ParserRefreshStrategy.h>
#include <Parsers/ParserSelectWithUnionQuery.h>
2019-07-24 15:22:16 +00:00
#include <Parsers/ParserSetQuery.h>
#include <Parsers/ASTIdentifier.h>
Data Skipping Indices (#4143) * made index parser * added index parsing * some fixes * added index interface and factory * fixed compilation * ptrs * added indexParts * indextypes * index condition * IndexCondition * added indexes in selectexecutor * fix * changed comment * fix * added granularity * comments * fix * fix * added writing indexes * removed indexpart class * fix * added setSkipIndexes * add rw for MergeTreeIndexes * fixes * upd error * fix * fix * reading * test index * fixed nullptr error * fixed * fix * unique names * asts -> exprlist * minmax index * fix * fixed select * fixed merging * fixed mutation * working minmax * removed test index * fixed style * added indexes to checkDataPart * added tests for minmax index * fixed constructor * fix style * fixed includes * fixed setSkipIndexes * added indexes meta to zookeeper * added parsing * removed throw * alter cmds parse * fix * added alter * fix * alters fix * fix alters * fix "after" * fixed alter * alter fix + test * fixes * upd setSkipIndexes * fixed alter bug with drop all indices * fix metadata editing * new test and repl fix * rm test files * fixed repl alter * fix * fix * indices * MTReadStream * upd test for bug * fix * added useful parsers and ast classes * fix * fix comments * replaced columns * fix * fixed parsing * fixed printing * fix err * basic IndicesDescription * go to IndicesDescr * moved indices * go to indicesDescr * fix test minmax_index* * fixed MT alter * fixed bug with replMT indices storing in zk * rename * refactoring * docs ru * docs ru * docs en * refactor * rename tests * fix docs * refactoring * fix * fix * fix * fixed style * unique idx * unique * fix * better minmax calculation * upd * added getBlock * unique_condition * added termForAST * unique * fixed not * uniqueCondition::mayBeTrueOnGranule * fix * fixed bug with double column * is always true * fix * key set * spaces * test * tests * fix * unique * fix * fix * fixed bug with duplicate column * removed unused data * fix * fixes * __bitSwapLastTwo * fix
2019-02-05 14:50:25 +00:00
#include <Parsers/ASTIndexDeclaration.h>
#include <Parsers/ASTAlterQuery.h>
#include <Parsers/ASTLiteral.h>
#include <Parsers/parseDatabaseAndTableName.h>
2013-08-07 13:07:42 +00:00
namespace DB
{
2016-01-28 01:00:27 +00:00
bool ParserAlterCommand::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
2013-08-07 13:07:42 +00:00
{
auto command = std::make_shared<ASTAlterCommand>();
node = command;
ParserKeyword s_add_column(Keyword::ADD_COLUMN);
ParserKeyword s_drop_column(Keyword::DROP_COLUMN);
ParserKeyword s_clear_column(Keyword::CLEAR_COLUMN);
ParserKeyword s_modify_column(Keyword::MODIFY_COLUMN);
ParserKeyword s_alter_column(Keyword::ALTER_COLUMN);
ParserKeyword s_rename_column(Keyword::RENAME_COLUMN);
ParserKeyword s_comment_column(Keyword::COMMENT_COLUMN);
ParserKeyword s_materialize_column(Keyword::MATERIALIZE_COLUMN);
ParserKeyword s_modify_order_by(Keyword::MODIFY_ORDER_BY);
ParserKeyword s_modify_sample_by(Keyword::MODIFY_SAMPLE_BY);
ParserKeyword s_modify_ttl(Keyword::MODIFY_TTL);
ParserKeyword s_materialize_ttl(Keyword::MATERIALIZE_TTL);
ParserKeyword s_modify_setting(Keyword::MODIFY_SETTING);
ParserKeyword s_reset_setting(Keyword::RESET_SETTING);
ParserKeyword s_modify_query(Keyword::MODIFY_QUERY);
ParserKeyword s_modify_sql_security(Keyword::MODIFY_SQL_SECURITY);
ParserKeyword s_modify_definer(Keyword::MODIFY_DEFINER);
ParserKeyword s_modify_refresh(Keyword::MODIFY_REFRESH);
ParserKeyword s_add_index(Keyword::ADD_INDEX);
ParserKeyword s_drop_index(Keyword::DROP_INDEX);
ParserKeyword s_clear_index(Keyword::CLEAR_INDEX);
ParserKeyword s_materialize_index(Keyword::MATERIALIZE_INDEX);
ParserKeyword s_add_statistic(Keyword::ADD_STATISTIC);
ParserKeyword s_drop_statistic(Keyword::DROP_STATISTIC);
ParserKeyword s_clear_statistic(Keyword::CLEAR_STATISTIC);
ParserKeyword s_materialize_statistic(Keyword::MATERIALIZE_STATISTIC);
ParserKeyword s_add_constraint(Keyword::ADD_CONSTRAINT);
ParserKeyword s_drop_constraint(Keyword::DROP_CONSTRAINT);
ParserKeyword s_add_projection(Keyword::ADD_PROJECTION);
ParserKeyword s_drop_projection(Keyword::DROP_PROJECTION);
ParserKeyword s_clear_projection(Keyword::CLEAR_PROJECTION);
ParserKeyword s_materialize_projection(Keyword::MATERIALIZE_PROJECTION);
ParserKeyword s_modify_comment(Keyword::MODIFY_COMMENT);
ParserKeyword s_add(Keyword::ADD);
ParserKeyword s_drop(Keyword::DROP);
ParserKeyword s_modify(Keyword::MODIFY);
ParserKeyword s_attach_partition(Keyword::ATTACH_PARTITION);
ParserKeyword s_attach_part(Keyword::ATTACH_PART);
ParserKeyword s_detach_partition(Keyword::DETACH_PARTITION);
ParserKeyword s_detach_part(Keyword::DETACH_PART);
ParserKeyword s_drop_partition(Keyword::DROP_PARTITION);
ParserKeyword s_drop_part(Keyword::DROP_PART);
ParserKeyword s_forget_partition(Keyword::FORGET_PARTITION);
ParserKeyword s_move_partition(Keyword::MOVE_PARTITION);
ParserKeyword s_move_part(Keyword::MOVE_PART);
ParserKeyword s_drop_detached_partition(Keyword::DROP_DETACHED_PARTITION);
ParserKeyword s_drop_detached_part(Keyword::DROP_DETACHED_PART);
ParserKeyword s_fetch_partition(Keyword::FETCH_PARTITION);
ParserKeyword s_fetch_part(Keyword::FETCH_PART);
ParserKeyword s_replace_partition(Keyword::REPLACE_PARTITION);
ParserKeyword s_freeze(Keyword::FREEZE);
ParserKeyword s_unfreeze(Keyword::UNFREEZE);
ParserKeyword s_partition(Keyword::PARTITION);
ParserKeyword s_first(Keyword::FIRST);
ParserKeyword s_after(Keyword::AFTER);
ParserKeyword s_if_not_exists(Keyword::IF_NOT_EXISTS);
ParserKeyword s_if_exists(Keyword::IF_EXISTS);
ParserKeyword s_from(Keyword::FROM);
ParserKeyword s_in_partition(Keyword::IN_PARTITION);
ParserKeyword s_with(Keyword::WITH);
ParserKeyword s_name(Keyword::NAME);
ParserKeyword s_to_disk(Keyword::TO_DISK);
ParserKeyword s_to_volume(Keyword::TO_VOLUME);
ParserKeyword s_to_table(Keyword::TO_TABLE);
ParserKeyword s_to_shard(Keyword::TO_SHARD);
ParserKeyword s_delete(Keyword::DELETE);
ParserKeyword s_update(Keyword::UPDATE);
ParserKeyword s_where(Keyword::WHERE);
ParserKeyword s_to(Keyword::TO);
ParserKeyword s_remove(Keyword::REMOVE);
ParserKeyword s_default(Keyword::DEFAULT);
ParserKeyword s_materialized(Keyword::MATERIALIZED);
ParserKeyword s_alias(Keyword::ALIAS);
ParserKeyword s_comment(Keyword::COMMENT);
ParserKeyword s_codec(Keyword::CODEC);
ParserKeyword s_ttl(Keyword::TTL);
ParserKeyword s_settings(Keyword::SETTINGS);
ParserKeyword s_remove_ttl(Keyword::REMOVE_TTL);
ParserKeyword s_remove_sample_by(Keyword::REMOVE_SAMPLE_BY);
ParserKeyword s_apply_deleted_mask(Keyword::APPLY_DELETED_MASK);
ParserToken parser_opening_round_bracket(TokenType::OpeningRoundBracket);
ParserToken parser_closing_round_bracket(TokenType::ClosingRoundBracket);
ParserCompoundIdentifier parser_name;
ParserStringLiteral parser_string_literal;
ParserStringAndSubstitution parser_string_and_substituion;
ParserIdentifier parser_remove_property;
ParserCompoundColumnDeclaration parser_col_decl;
Data Skipping Indices (#4143) * made index parser * added index parsing * some fixes * added index interface and factory * fixed compilation * ptrs * added indexParts * indextypes * index condition * IndexCondition * added indexes in selectexecutor * fix * changed comment * fix * added granularity * comments * fix * fix * added writing indexes * removed indexpart class * fix * added setSkipIndexes * add rw for MergeTreeIndexes * fixes * upd error * fix * fix * reading * test index * fixed nullptr error * fixed * fix * unique names * asts -> exprlist * minmax index * fix * fixed select * fixed merging * fixed mutation * working minmax * removed test index * fixed style * added indexes to checkDataPart * added tests for minmax index * fixed constructor * fix style * fixed includes * fixed setSkipIndexes * added indexes meta to zookeeper * added parsing * removed throw * alter cmds parse * fix * added alter * fix * alters fix * fix alters * fix "after" * fixed alter * alter fix + test * fixes * upd setSkipIndexes * fixed alter bug with drop all indices * fix metadata editing * new test and repl fix * rm test files * fixed repl alter * fix * fix * indices * MTReadStream * upd test for bug * fix * added useful parsers and ast classes * fix * fix comments * replaced columns * fix * fixed parsing * fixed printing * fix err * basic IndicesDescription * go to IndicesDescr * moved indices * go to indicesDescr * fix test minmax_index* * fixed MT alter * fixed bug with replMT indices storing in zk * rename * refactoring * docs ru * docs ru * docs en * refactor * rename tests * fix docs * refactoring * fix * fix * fix * fixed style * unique idx * unique * fix * better minmax calculation * upd * added getBlock * unique_condition * added termForAST * unique * fixed not * uniqueCondition::mayBeTrueOnGranule * fix * fixed bug with double column * is always true * fix * key set * spaces * test * tests * fix * unique * fix * fix * fixed bug with duplicate column * removed unused data * fix * fixes * __bitSwapLastTwo * fix
2019-02-05 14:50:25 +00:00
ParserIndexDeclaration parser_idx_decl;
ParserStatisticDeclaration parser_stat_decl;
ParserConstraintDeclaration parser_constraint_decl;
ParserProjectionDeclaration parser_projection_decl;
ParserCompoundColumnDeclaration parser_modify_col_decl(false, false, true);
ParserPartition parser_partition;
ParserExpression parser_exp_elem;
ParserList parser_assignment_list(
std::make_unique<ParserAssignment>(), std::make_unique<ParserToken>(TokenType::Comma),
/* allow_empty = */ false);
2019-07-24 15:22:16 +00:00
ParserSetQuery parser_settings(true);
ParserList parser_reset_setting(
std::make_unique<ParserIdentifier>(), std::make_unique<ParserToken>(TokenType::Comma),
/* allow_empty = */ false);
ParserSelectWithUnionQuery select_p;
ParserSQLSecurity sql_security_p;
2023-11-29 02:32:41 +00:00
ParserRefreshStrategy refresh_p;
2019-10-09 13:02:05 +00:00
ParserTTLExpressionList parser_ttl_list;
ASTPtr command_col_decl;
ASTPtr command_column;
ASTPtr command_order_by;
ASTPtr command_sample_by;
ASTPtr command_index_decl;
ASTPtr command_index;
ASTPtr command_constraint_decl;
ASTPtr command_constraint;
ASTPtr command_projection_decl;
ASTPtr command_projection;
ASTPtr command_statistic_decl;
ASTPtr command_partition;
ASTPtr command_predicate;
ASTPtr command_update_assignments;
ASTPtr command_comment;
ASTPtr command_ttl;
ASTPtr command_settings_changes;
ASTPtr command_settings_resets;
ASTPtr command_select;
ASTPtr command_rename_to;
ASTPtr command_sql_security;
if (with_round_bracket)
{
if (!parser_opening_round_bracket.ignore(pos, expected))
return false;
}
2021-08-20 17:59:57 +00:00
switch (alter_object)
{
2021-08-20 17:59:57 +00:00
case ASTAlterQuery::AlterObjectType::DATABASE:
2021-07-31 18:17:06 +00:00
{
2021-08-20 17:59:57 +00:00
if (s_modify_setting.ignore(pos, expected))
2021-07-31 18:17:06 +00:00
{
if (!parser_settings.parse(pos, command_settings_changes, expected))
2021-07-31 18:17:06 +00:00
return false;
2021-08-27 06:30:21 +00:00
command->type = ASTAlterCommand::MODIFY_DATABASE_SETTING;
2021-07-31 18:17:06 +00:00
}
2021-08-20 17:59:57 +00:00
else
2019-05-09 14:25:18 +00:00
return false;
2021-08-20 17:59:57 +00:00
break;
2019-05-09 14:25:18 +00:00
}
2021-08-27 06:30:21 +00:00
default:
break;
2021-08-20 17:59:57 +00:00
case ASTAlterQuery::AlterObjectType::TABLE:
{
if (s_add_column.ignore(pos, expected))
2021-08-20 17:59:57 +00:00
{
if (s_if_not_exists.ignore(pos, expected))
command->if_not_exists = true;
if (!parser_col_decl.parse(pos, command_col_decl, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
if (s_first.ignore(pos, expected))
command->first = true;
else if (s_after.ignore(pos, expected))
{
if (!parser_name.parse(pos, command_column, expected))
2021-08-20 17:59:57 +00:00
return false;
}
Data Skipping Indices (#4143) * made index parser * added index parsing * some fixes * added index interface and factory * fixed compilation * ptrs * added indexParts * indextypes * index condition * IndexCondition * added indexes in selectexecutor * fix * changed comment * fix * added granularity * comments * fix * fix * added writing indexes * removed indexpart class * fix * added setSkipIndexes * add rw for MergeTreeIndexes * fixes * upd error * fix * fix * reading * test index * fixed nullptr error * fixed * fix * unique names * asts -> exprlist * minmax index * fix * fixed select * fixed merging * fixed mutation * working minmax * removed test index * fixed style * added indexes to checkDataPart * added tests for minmax index * fixed constructor * fix style * fixed includes * fixed setSkipIndexes * added indexes meta to zookeeper * added parsing * removed throw * alter cmds parse * fix * added alter * fix * alters fix * fix alters * fix "after" * fixed alter * alter fix + test * fixes * upd setSkipIndexes * fixed alter bug with drop all indices * fix metadata editing * new test and repl fix * rm test files * fixed repl alter * fix * fix * indices * MTReadStream * upd test for bug * fix * added useful parsers and ast classes * fix * fix comments * replaced columns * fix * fixed parsing * fixed printing * fix err * basic IndicesDescription * go to IndicesDescr * moved indices * go to indicesDescr * fix test minmax_index* * fixed MT alter * fixed bug with replMT indices storing in zk * rename * refactoring * docs ru * docs ru * docs en * refactor * rename tests * fix docs * refactoring * fix * fix * fix * fixed style * unique idx * unique * fix * better minmax calculation * upd * added getBlock * unique_condition * added termForAST * unique * fixed not * uniqueCondition::mayBeTrueOnGranule * fix * fixed bug with double column * is always true * fix * key set * spaces * test * tests * fix * unique * fix * fix * fixed bug with duplicate column * removed unused data * fix * fixes * __bitSwapLastTwo * fix
2019-02-05 14:50:25 +00:00
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::ADD_COLUMN;
}
else if (s_rename_column.ignore(pos, expected))
{
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
Data Skipping Indices (#4143) * made index parser * added index parsing * some fixes * added index interface and factory * fixed compilation * ptrs * added indexParts * indextypes * index condition * IndexCondition * added indexes in selectexecutor * fix * changed comment * fix * added granularity * comments * fix * fix * added writing indexes * removed indexpart class * fix * added setSkipIndexes * add rw for MergeTreeIndexes * fixes * upd error * fix * fix * reading * test index * fixed nullptr error * fixed * fix * unique names * asts -> exprlist * minmax index * fix * fixed select * fixed merging * fixed mutation * working minmax * removed test index * fixed style * added indexes to checkDataPart * added tests for minmax index * fixed constructor * fix style * fixed includes * fixed setSkipIndexes * added indexes meta to zookeeper * added parsing * removed throw * alter cmds parse * fix * added alter * fix * alters fix * fix alters * fix "after" * fixed alter * alter fix + test * fixes * upd setSkipIndexes * fixed alter bug with drop all indices * fix metadata editing * new test and repl fix * rm test files * fixed repl alter * fix * fix * indices * MTReadStream * upd test for bug * fix * added useful parsers and ast classes * fix * fix comments * replaced columns * fix * fixed parsing * fixed printing * fix err * basic IndicesDescription * go to IndicesDescr * moved indices * go to indicesDescr * fix test minmax_index* * fixed MT alter * fixed bug with replMT indices storing in zk * rename * refactoring * docs ru * docs ru * docs en * refactor * rename tests * fix docs * refactoring * fix * fix * fix * fixed style * unique idx * unique * fix * better minmax calculation * upd * added getBlock * unique_condition * added termForAST * unique * fixed not * uniqueCondition::mayBeTrueOnGranule * fix * fixed bug with double column * is always true * fix * key set * spaces * test * tests * fix * unique * fix * fix * fixed bug with duplicate column * removed unused data * fix * fixes * __bitSwapLastTwo * fix
2019-02-05 14:50:25 +00:00
if (!parser_name.parse(pos, command_column, expected))
2021-08-20 17:59:57 +00:00
return false;
Data Skipping Indices (#4143) * made index parser * added index parsing * some fixes * added index interface and factory * fixed compilation * ptrs * added indexParts * indextypes * index condition * IndexCondition * added indexes in selectexecutor * fix * changed comment * fix * added granularity * comments * fix * fix * added writing indexes * removed indexpart class * fix * added setSkipIndexes * add rw for MergeTreeIndexes * fixes * upd error * fix * fix * reading * test index * fixed nullptr error * fixed * fix * unique names * asts -> exprlist * minmax index * fix * fixed select * fixed merging * fixed mutation * working minmax * removed test index * fixed style * added indexes to checkDataPart * added tests for minmax index * fixed constructor * fix style * fixed includes * fixed setSkipIndexes * added indexes meta to zookeeper * added parsing * removed throw * alter cmds parse * fix * added alter * fix * alters fix * fix alters * fix "after" * fixed alter * alter fix + test * fixes * upd setSkipIndexes * fixed alter bug with drop all indices * fix metadata editing * new test and repl fix * rm test files * fixed repl alter * fix * fix * indices * MTReadStream * upd test for bug * fix * added useful parsers and ast classes * fix * fix comments * replaced columns * fix * fixed parsing * fixed printing * fix err * basic IndicesDescription * go to IndicesDescr * moved indices * go to indicesDescr * fix test minmax_index* * fixed MT alter * fixed bug with replMT indices storing in zk * rename * refactoring * docs ru * docs ru * docs en * refactor * rename tests * fix docs * refactoring * fix * fix * fix * fixed style * unique idx * unique * fix * better minmax calculation * upd * added getBlock * unique_condition * added termForAST * unique * fixed not * uniqueCondition::mayBeTrueOnGranule * fix * fixed bug with double column * is always true * fix * key set * spaces * test * tests * fix * unique * fix * fix * fixed bug with duplicate column * removed unused data * fix * fixes * __bitSwapLastTwo * fix
2019-02-05 14:50:25 +00:00
2021-08-20 17:59:57 +00:00
if (!s_to.ignore(pos, expected))
return false;
if (!parser_name.parse(pos, command_rename_to, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::RENAME_COLUMN;
}
2021-09-04 22:59:44 +00:00
else if (s_materialize_column.ignore(pos, expected))
{
if (!parser_name.parse(pos, command_column, expected))
2021-09-04 22:59:44 +00:00
return false;
2021-09-04 22:59:44 +00:00
command->type = ASTAlterCommand::MATERIALIZE_COLUMN;
command->detach = false;
2021-09-04 22:59:44 +00:00
if (s_in_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-09-04 22:59:44 +00:00
return false;
}
}
2021-08-20 17:59:57 +00:00
else if (s_drop_partition.ignore(pos, expected))
2019-08-16 10:55:40 +00:00
{
if (!parser_partition.parse(pos, command_partition, expected))
2019-08-16 10:55:40 +00:00
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_PARTITION;
2019-08-16 10:55:40 +00:00
}
2021-08-20 17:59:57 +00:00
else if (s_drop_part.ignore(pos, expected))
{
if (!parser_string_and_substituion.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
Data Skipping Indices (#4143) * made index parser * added index parsing * some fixes * added index interface and factory * fixed compilation * ptrs * added indexParts * indextypes * index condition * IndexCondition * added indexes in selectexecutor * fix * changed comment * fix * added granularity * comments * fix * fix * added writing indexes * removed indexpart class * fix * added setSkipIndexes * add rw for MergeTreeIndexes * fixes * upd error * fix * fix * reading * test index * fixed nullptr error * fixed * fix * unique names * asts -> exprlist * minmax index * fix * fixed select * fixed merging * fixed mutation * working minmax * removed test index * fixed style * added indexes to checkDataPart * added tests for minmax index * fixed constructor * fix style * fixed includes * fixed setSkipIndexes * added indexes meta to zookeeper * added parsing * removed throw * alter cmds parse * fix * added alter * fix * alters fix * fix alters * fix "after" * fixed alter * alter fix + test * fixes * upd setSkipIndexes * fixed alter bug with drop all indices * fix metadata editing * new test and repl fix * rm test files * fixed repl alter * fix * fix * indices * MTReadStream * upd test for bug * fix * added useful parsers and ast classes * fix * fix comments * replaced columns * fix * fixed parsing * fixed printing * fix err * basic IndicesDescription * go to IndicesDescr * moved indices * go to indicesDescr * fix test minmax_index* * fixed MT alter * fixed bug with replMT indices storing in zk * rename * refactoring * docs ru * docs ru * docs en * refactor * rename tests * fix docs * refactoring * fix * fix * fix * fixed style * unique idx * unique * fix * better minmax calculation * upd * added getBlock * unique_condition * added termForAST * unique * fixed not * uniqueCondition::mayBeTrueOnGranule * fix * fixed bug with double column * is always true * fix * key set * spaces * test * tests * fix * unique * fix * fix * fixed bug with duplicate column * removed unused data * fix * fixes * __bitSwapLastTwo * fix
2019-02-05 14:50:25 +00:00
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_PARTITION;
command->part = true;
}
else if (s_forget_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
return false;
command->type = ASTAlterCommand::FORGET_PARTITION;
}
2021-08-20 17:59:57 +00:00
else if (s_drop_detached_partition.ignore(pos, expected))
2019-08-16 10:55:40 +00:00
{
if (!parser_partition.parse(pos, command_partition, expected))
2019-08-16 10:55:40 +00:00
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_DETACHED_PARTITION;
}
else if (s_drop_detached_part.ignore(pos, expected))
{
if (!parser_string_and_substituion.parse(pos, command_partition, expected))
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_DETACHED_PARTITION;
command->part = true;
}
2021-08-20 17:59:57 +00:00
else if (s_drop_column.ignore(pos, expected))
{
2021-08-20 17:59:57 +00:00
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!parser_name.parse(pos, command_column, expected))
return false;
2019-04-09 15:36:33 +00:00
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_COLUMN;
command->detach = false;
}
2021-08-20 17:59:57 +00:00
else if (s_clear_column.ignore(pos, expected))
{
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!parser_name.parse(pos, command_column, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_COLUMN;
command->clear_column = true;
command->detach = false;
2021-08-20 17:59:57 +00:00
if (s_in_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
}
}
else if (s_add_index.ignore(pos, expected))
{
if (s_if_not_exists.ignore(pos, expected))
command->if_not_exists = true;
if (!parser_idx_decl.parse(pos, command_index_decl, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
if (s_first.ignore(pos, expected))
command->first = true;
else if (s_after.ignore(pos, expected))
{
if (!parser_name.parse(pos, command_index, expected))
2021-08-20 17:59:57 +00:00
return false;
}
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::ADD_INDEX;
}
else if (s_drop_index.ignore(pos, expected))
{
2021-08-20 17:59:57 +00:00
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!parser_name.parse(pos, command_index, expected))
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_INDEX;
command->detach = false;
}
2021-08-20 17:59:57 +00:00
else if (s_clear_index.ignore(pos, expected))
{
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!parser_name.parse(pos, command_index, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_INDEX;
command->clear_index = true;
command->detach = false;
2021-08-20 17:59:57 +00:00
if (s_in_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
}
}
else if (s_materialize_index.ignore(pos, expected))
{
2021-08-20 17:59:57 +00:00
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!parser_name.parse(pos, command_index, expected))
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::MATERIALIZE_INDEX;
command->detach = false;
if (s_in_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
}
}
else if (s_add_statistic.ignore(pos, expected))
{
if (s_if_not_exists.ignore(pos, expected))
command->if_not_exists = true;
if (!parser_stat_decl.parse(pos, command_statistic_decl, expected))
return false;
command->type = ASTAlterCommand::ADD_STATISTIC;
}
else if (s_drop_statistic.ignore(pos, expected))
{
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!parser_stat_decl.parse(pos, command_statistic_decl, expected))
return false;
command->type = ASTAlterCommand::DROP_STATISTIC;
}
else if (s_clear_statistic.ignore(pos, expected))
{
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!parser_stat_decl.parse(pos, command_statistic_decl, expected))
return false;
command->type = ASTAlterCommand::DROP_STATISTIC;
command->clear_statistic = true;
command->detach = false;
if (s_in_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
return false;
}
}
else if (s_materialize_statistic.ignore(pos, expected))
{
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!parser_stat_decl.parse(pos, command_statistic_decl, expected))
return false;
command->type = ASTAlterCommand::MATERIALIZE_STATISTIC;
command->detach = false;
2021-08-20 17:59:57 +00:00
if (s_in_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
}
}
2021-08-20 17:59:57 +00:00
else if (s_add_projection.ignore(pos, expected))
{
if (s_if_not_exists.ignore(pos, expected))
command->if_not_exists = true;
if (!parser_projection_decl.parse(pos, command_projection_decl, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
if (s_first.ignore(pos, expected))
command->first = true;
else if (s_after.ignore(pos, expected))
{
if (!parser_name.parse(pos, command_projection, expected))
2021-08-20 17:59:57 +00:00
return false;
}
command->type = ASTAlterCommand::ADD_PROJECTION;
}
else if (s_drop_projection.ignore(pos, expected))
{
2021-08-20 17:59:57 +00:00
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!parser_name.parse(pos, command_projection, expected))
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_PROJECTION;
command->detach = false;
}
2021-08-20 17:59:57 +00:00
else if (s_clear_projection.ignore(pos, expected))
{
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!parser_name.parse(pos, command_projection, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_PROJECTION;
command->clear_projection = true;
command->detach = false;
2021-08-20 17:59:57 +00:00
if (s_in_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
}
}
else if (s_materialize_projection.ignore(pos, expected))
{
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!parser_name.parse(pos, command_projection, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::MATERIALIZE_PROJECTION;
command->detach = false;
2021-08-20 17:59:57 +00:00
if (s_in_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
}
}
else if (s_move_part.ignore(pos, expected))
{
if (!parser_string_and_substituion.parse(pos, command_partition, expected))
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::MOVE_PARTITION;
command->part = true;
2021-08-20 17:59:57 +00:00
if (s_to_disk.ignore(pos))
command->move_destination_type = DataDestinationType::DISK;
else if (s_to_volume.ignore(pos))
command->move_destination_type = DataDestinationType::VOLUME;
else if (s_to_shard.ignore(pos))
{
command->move_destination_type = DataDestinationType::SHARD;
}
else
return false;
ASTPtr ast_space_name;
if (!parser_string_literal.parse(pos, ast_space_name, expected))
return false;
command->move_destination_name = ast_space_name->as<ASTLiteral &>().value.get<const String &>();
2021-08-20 17:59:57 +00:00
}
else if (s_move_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::MOVE_PARTITION;
2019-08-20 09:59:19 +00:00
2021-08-20 17:59:57 +00:00
if (s_to_disk.ignore(pos))
command->move_destination_type = DataDestinationType::DISK;
else if (s_to_volume.ignore(pos))
command->move_destination_type = DataDestinationType::VOLUME;
else if (s_to_table.ignore(pos))
{
if (!parseDatabaseAndTableName(pos, expected, command->to_database, command->to_table))
return false;
command->move_destination_type = DataDestinationType::TABLE;
}
else
return false;
2021-08-20 17:59:57 +00:00
if (command->move_destination_type != DataDestinationType::TABLE)
{
ASTPtr ast_space_name;
if (!parser_string_literal.parse(pos, ast_space_name, expected))
return false;
command->move_destination_name = ast_space_name->as<ASTLiteral &>().value.get<const String &>();
}
}
2021-08-20 17:59:57 +00:00
else if (s_add_constraint.ignore(pos, expected))
{
2021-08-20 17:59:57 +00:00
if (s_if_not_exists.ignore(pos, expected))
command->if_not_exists = true;
if (!parser_constraint_decl.parse(pos, command_constraint_decl, expected))
2019-09-16 07:27:38 +00:00
return false;
2019-07-18 15:19:03 +00:00
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::ADD_CONSTRAINT;
2019-09-16 07:27:38 +00:00
}
2021-08-20 17:59:57 +00:00
else if (s_drop_constraint.ignore(pos, expected))
{
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
2019-07-18 15:19:03 +00:00
if (!parser_name.parse(pos, command_constraint, expected))
2021-08-20 17:59:57 +00:00
return false;
2019-07-18 15:19:03 +00:00
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_CONSTRAINT;
command->detach = false;
}
else if (s_detach_partition.ignore(pos, expected))
2019-09-16 07:27:38 +00:00
{
if (!parser_partition.parse(pos, command_partition, expected))
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_PARTITION;
command->detach = true;
}
else if (s_detach_part.ignore(pos, expected))
2019-09-16 07:27:38 +00:00
{
if (!parser_string_and_substituion.parse(pos, command_partition, expected))
2019-09-16 07:27:38 +00:00
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DROP_PARTITION;
command->part = true;
command->detach = true;
2019-09-16 07:27:38 +00:00
}
2021-08-20 17:59:57 +00:00
else if (s_attach_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
if (s_from.ignore(pos))
{
if (!parseDatabaseAndTableName(pos, expected, command->from_database, command->from_table))
return false;
2021-08-20 17:59:57 +00:00
command->replace = false;
command->type = ASTAlterCommand::REPLACE_PARTITION;
}
else
{
command->type = ASTAlterCommand::ATTACH_PARTITION;
}
}
else if (s_replace_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
if (!s_from.ignore(pos, expected))
return false;
if (!parseDatabaseAndTableName(pos, expected, command->from_database, command->from_table))
return false;
2021-08-20 17:59:57 +00:00
command->replace = true;
command->type = ASTAlterCommand::REPLACE_PARTITION;
}
2021-08-20 17:59:57 +00:00
else if (s_attach_part.ignore(pos, expected))
{
if (!parser_string_and_substituion.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
command->part = true;
command->type = ASTAlterCommand::ATTACH_PARTITION;
}
2021-08-20 17:59:57 +00:00
else if (s_fetch_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
2014-08-07 11:46:01 +00:00
2021-08-20 17:59:57 +00:00
if (!s_from.ignore(pos, expected))
return false;
2021-08-20 17:59:57 +00:00
ASTPtr ast_from;
if (!parser_string_literal.parse(pos, ast_from, expected))
return false;
2021-08-20 17:59:57 +00:00
command->from = ast_from->as<ASTLiteral &>().value.get<const String &>();
command->type = ASTAlterCommand::FETCH_PARTITION;
}
else if (s_fetch_part.ignore(pos, expected))
{
if (!parser_string_and_substituion.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
if (!s_from.ignore(pos, expected))
return false;
2021-08-20 17:59:57 +00:00
ASTPtr ast_from;
if (!parser_string_literal.parse(pos, ast_from, expected))
return false;
command->from = ast_from->as<ASTLiteral &>().value.get<const String &>();
command->part = true;
command->type = ASTAlterCommand::FETCH_PARTITION;
}
else if (s_freeze.ignore(pos, expected))
{
if (s_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::FREEZE_PARTITION;
}
else
{
command->type = ASTAlterCommand::FREEZE_ALL;
}
2021-08-20 17:59:57 +00:00
/// WITH NAME 'name' - place local backup to directory with specified name
if (s_with.ignore(pos, expected))
{
if (!s_name.ignore(pos, expected))
return false;
2021-08-20 17:59:57 +00:00
ASTPtr ast_with_name;
if (!parser_string_literal.parse(pos, ast_with_name, expected))
return false;
2021-08-20 17:59:57 +00:00
command->with_name = ast_with_name->as<ASTLiteral &>().value.get<const String &>();
}
}
else if (s_unfreeze.ignore(pos, expected))
{
2021-08-20 17:59:57 +00:00
if (s_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::UNFREEZE_PARTITION;
}
else
{
command->type = ASTAlterCommand::UNFREEZE_ALL;
}
/// WITH NAME 'name' - remove local backup to directory with specified name
if (s_with.ignore(pos, expected))
{
if (!s_name.ignore(pos, expected))
return false;
ASTPtr ast_with_name;
if (!parser_string_literal.parse(pos, ast_with_name, expected))
return false;
command->with_name = ast_with_name->as<ASTLiteral &>().value.get<const String &>();
}
else
{
return false;
}
}
else if (bool is_modify = s_modify_column.ignore(pos, expected); is_modify || s_alter_column.ignore(pos, expected))
{
2021-08-20 17:59:57 +00:00
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!is_modify)
parser_modify_col_decl.enableCheckTypeKeyword();
if (!parser_modify_col_decl.parse(pos, command_col_decl, expected))
return false;
2021-08-20 17:59:57 +00:00
if (s_remove.ignore(pos, expected))
{
if (s_default.ignore(pos, expected))
command->remove_property = toStringView(Keyword::DEFAULT);
2021-08-20 17:59:57 +00:00
else if (s_materialized.ignore(pos, expected))
command->remove_property = toStringView(Keyword::MATERIALIZED);
2021-08-20 17:59:57 +00:00
else if (s_alias.ignore(pos, expected))
command->remove_property = toStringView(Keyword::ALIAS);
2021-08-20 17:59:57 +00:00
else if (s_comment.ignore(pos, expected))
command->remove_property = toStringView(Keyword::COMMENT);
2021-08-20 17:59:57 +00:00
else if (s_codec.ignore(pos, expected))
command->remove_property = toStringView(Keyword::CODEC);
2021-08-20 17:59:57 +00:00
else if (s_ttl.ignore(pos, expected))
command->remove_property = toStringView(Keyword::TTL);
else if (s_settings.ignore(pos, expected))
command->remove_property = toStringView(Keyword::SETTINGS);
2021-08-20 17:59:57 +00:00
else
return false;
}
else if (s_modify_setting.ignore(pos, expected))
{
2024-01-18 19:52:13 +00:00
if (!parser_settings.parse(pos, command_settings_changes, expected))
return false;
}
else if (s_reset_setting.ignore(pos, expected))
{
2024-01-18 19:52:13 +00:00
if (!parser_reset_setting.parse(pos, command_settings_resets, expected))
return false;
}
2021-08-20 17:59:57 +00:00
else
{
if (s_first.ignore(pos, expected))
command->first = true;
else if (s_after.ignore(pos, expected))
{
if (!parser_name.parse(pos, command_column, expected))
2021-08-20 17:59:57 +00:00
return false;
}
}
command->type = ASTAlterCommand::MODIFY_COLUMN;
}
else if (s_modify_order_by.ignore(pos, expected))
{
if (!parser_exp_elem.parse(pos, command_order_by, expected))
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::MODIFY_ORDER_BY;
}
2021-08-20 17:59:57 +00:00
else if (s_modify_sample_by.ignore(pos, expected))
2021-03-02 20:28:42 +00:00
{
if (!parser_exp_elem.parse(pos, command_sample_by, expected))
2021-03-02 20:28:42 +00:00
return false;
2021-02-24 14:26:46 +00:00
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::MODIFY_SAMPLE_BY;
2021-03-02 20:28:42 +00:00
}
2021-10-14 13:44:28 +00:00
else if (s_remove_sample_by.ignore(pos, expected))
{
command->type = ASTAlterCommand::REMOVE_SAMPLE_BY;
}
2021-08-20 17:59:57 +00:00
else if (s_delete.ignore(pos, expected))
2021-03-02 20:28:42 +00:00
{
2021-08-20 17:59:57 +00:00
if (s_in_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
}
2021-03-02 20:28:42 +00:00
2021-08-20 17:59:57 +00:00
if (!s_where.ignore(pos, expected))
2021-03-02 20:28:42 +00:00
return false;
if (!parser_exp_elem.parse(pos, command_predicate, expected))
2021-03-02 20:28:42 +00:00
return false;
2021-02-24 14:26:46 +00:00
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::DELETE;
2021-03-02 20:28:42 +00:00
}
2021-08-20 17:59:57 +00:00
else if (s_update.ignore(pos, expected))
2021-03-02 20:28:42 +00:00
{
if (!parser_assignment_list.parse(pos, command_update_assignments, expected))
2021-08-20 17:59:57 +00:00
return false;
if (s_in_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
2021-08-20 17:59:57 +00:00
return false;
}
if (!s_where.ignore(pos, expected))
return false;
if (!parser_exp_elem.parse(pos, command_predicate, expected))
2021-08-20 17:59:57 +00:00
return false;
command->type = ASTAlterCommand::UPDATE;
2021-03-02 20:28:42 +00:00
}
2021-08-20 17:59:57 +00:00
else if (s_comment_column.ignore(pos, expected))
{
if (s_if_exists.ignore(pos, expected))
command->if_exists = true;
if (!parser_name.parse(pos, command_column, expected))
2021-08-20 17:59:57 +00:00
return false;
if (!parser_string_literal.parse(pos, command_comment, expected))
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::COMMENT_COLUMN;
}
2021-08-20 17:59:57 +00:00
else if (s_modify_ttl.ignore(pos, expected))
{
if (!parser_ttl_list.parse(pos, command_ttl, expected))
2021-08-20 17:59:57 +00:00
return false;
command->type = ASTAlterCommand::MODIFY_TTL;
}
else if (s_remove_ttl.ignore(pos, expected))
{
command->type = ASTAlterCommand::REMOVE_TTL;
}
else if (s_materialize_ttl.ignore(pos, expected))
{
command->type = ASTAlterCommand::MATERIALIZE_TTL;
if (s_in_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
return false;
}
}
2021-08-20 17:59:57 +00:00
else if (s_modify_setting.ignore(pos, expected))
{
if (!parser_settings.parse(pos, command_settings_changes, expected))
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::MODIFY_SETTING;
}
2021-08-20 17:59:57 +00:00
else if (s_reset_setting.ignore(pos, expected))
{
if (!parser_reset_setting.parse(pos, command_settings_resets, expected))
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::RESET_SETTING;
}
2021-08-20 17:59:57 +00:00
else if (s_modify_query.ignore(pos, expected))
2020-03-10 11:17:26 +00:00
{
if (!select_p.parse(pos, command_select, expected))
2020-03-10 11:17:26 +00:00
return false;
2021-08-20 17:59:57 +00:00
command->type = ASTAlterCommand::MODIFY_QUERY;
2020-03-10 11:17:26 +00:00
}
else if (s_modify_sql_security.checkWithoutMoving(pos, expected))
{
s_modify.ignore(pos, expected);
if (!sql_security_p.parse(pos, command_sql_security, expected))
return false;
command->type = ASTAlterCommand::MODIFY_SQL_SECURITY;
}
else if (s_modify_definer.checkWithoutMoving(pos, expected))
{
s_modify.ignore(pos, expected);
if (!sql_security_p.parse(pos, command_sql_security, expected))
return false;
command->type = ASTAlterCommand::MODIFY_SQL_SECURITY;
}
2023-11-29 02:32:41 +00:00
else if (s_modify_refresh.ignore(pos, expected))
{
if (!refresh_p.parse(pos, command->refresh, expected))
return false;
command->type = ASTAlterCommand::MODIFY_REFRESH;
}
else if (s_modify_comment.ignore(pos, expected))
{
if (!parser_string_literal.parse(pos, command_comment, expected))
return false;
command->type = ASTAlterCommand::MODIFY_COMMENT;
}
else if (s_apply_deleted_mask.ignore(pos, expected))
{
command->type = ASTAlterCommand::APPLY_DELETED_MASK;
if (s_in_partition.ignore(pos, expected))
{
if (!parser_partition.parse(pos, command_partition, expected))
return false;
}
}
2021-08-20 17:59:57 +00:00
else
return false;
}
}
if (with_round_bracket)
{
if (!parser_closing_round_bracket.ignore(pos, expected))
return false;
}
if (command_col_decl)
command->col_decl = command->children.emplace_back(std::move(command_col_decl)).get();
if (command_column)
command->column = command->children.emplace_back(std::move(command_column)).get();
if (command_order_by)
command->order_by = command->children.emplace_back(std::move(command_order_by)).get();
if (command_sample_by)
command->sample_by = command->children.emplace_back(std::move(command_sample_by)).get();
if (command_index_decl)
command->index_decl = command->children.emplace_back(std::move(command_index_decl)).get();
if (command_index)
command->index = command->children.emplace_back(std::move(command_index)).get();
if (command_constraint_decl)
command->constraint_decl = command->children.emplace_back(std::move(command_constraint_decl)).get();
if (command_constraint)
command->constraint = command->children.emplace_back(std::move(command_constraint)).get();
if (command_projection_decl)
command->projection_decl = command->children.emplace_back(std::move(command_projection_decl)).get();
if (command_projection)
command->projection = command->children.emplace_back(std::move(command_projection)).get();
if (command_statistic_decl)
command->statistic_decl = command->children.emplace_back(std::move(command_statistic_decl)).get();
if (command_partition)
command->partition = command->children.emplace_back(std::move(command_partition)).get();
if (command_predicate)
command->predicate = command->children.emplace_back(std::move(command_predicate)).get();
if (command_update_assignments)
command->update_assignments = command->children.emplace_back(std::move(command_update_assignments)).get();
if (command_comment)
command->comment = command->children.emplace_back(std::move(command_comment)).get();
if (command_ttl)
command->ttl = command->children.emplace_back(std::move(command_ttl)).get();
if (command_settings_changes)
command->settings_changes = command->children.emplace_back(std::move(command_settings_changes)).get();
if (command_settings_resets)
command->settings_resets = command->children.emplace_back(std::move(command_settings_resets)).get();
if (command_select)
command->select = command->children.emplace_back(std::move(command_select)).get();
if (command_sql_security)
command->sql_security = command->children.emplace_back(std::move(command_sql_security)).get();
if (command_rename_to)
command->rename_to = command->children.emplace_back(std::move(command_rename_to)).get();
return true;
}
2013-08-07 13:07:42 +00:00
bool ParserAlterCommandList::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
{
auto command_list = std::make_shared<ASTExpressionList>();
node = command_list;
ParserToken s_comma(TokenType::Comma);
const auto with_round_bracket = pos->type == TokenType::OpeningRoundBracket;
ParserAlterCommand p_command(with_round_bracket, alter_object);
do
{
ASTPtr command;
if (!p_command.parse(pos, command, expected))
return false;
2013-08-07 13:07:42 +00:00
command_list->children.push_back(command);
2013-08-07 13:07:42 +00:00
}
while (s_comma.ignore(pos, expected));
2013-08-07 13:07:42 +00:00
return true;
}
bool ParserAlterQuery::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
{
auto query = std::make_shared<ASTAlterQuery>();
node = query;
2013-08-07 13:07:42 +00:00
ParserKeyword s_alter_table(Keyword::ALTER_TABLE);
ParserKeyword s_alter_temporary_table(Keyword::ALTER_TEMPORARY_TABLE);
ParserKeyword s_alter_database(Keyword::ALTER_DATABASE);
2021-08-20 17:59:57 +00:00
ASTAlterQuery::AlterObjectType alter_object_type;
2023-11-16 21:24:58 +00:00
if (s_alter_table.ignore(pos, expected) || s_alter_temporary_table.ignore(pos, expected))
{
2021-08-20 17:59:57 +00:00
alter_object_type = ASTAlterQuery::AlterObjectType::TABLE;
}
2021-08-20 17:59:57 +00:00
else if (s_alter_database.ignore(pos, expected))
{
alter_object_type = ASTAlterQuery::AlterObjectType::DATABASE;
}
else
return false;
2021-08-27 06:30:21 +00:00
if (alter_object_type == ASTAlterQuery::AlterObjectType::DATABASE)
{
2021-11-16 08:58:28 +00:00
if (!parseDatabaseAsAST(pos, expected, query->database))
return false;
}
2021-08-27 06:30:21 +00:00
else
{
2021-11-16 08:58:28 +00:00
if (!parseDatabaseAndTableAsAST(pos, expected, query->database, query->table))
return false;
2021-08-27 06:30:21 +00:00
String cluster_str;
if (ParserKeyword(Keyword::ON).ignore(pos, expected))
2021-08-27 06:30:21 +00:00
{
if (!ASTQueryWithOnCluster::parse(pos, cluster_str, expected))
return false;
}
query->cluster = cluster_str;
}
ParserAlterCommandList p_command_list(alter_object_type);
ASTPtr command_list;
if (!p_command_list.parse(pos, command_list, expected))
return false;
query->set(query->command_list, command_list);
2021-08-27 06:30:21 +00:00
query->alter_object = alter_object_type;
if (query->database)
query->children.push_back(query->database);
if (query->table)
query->children.push_back(query->table);
2013-08-07 13:07:42 +00:00
return true;
}
2013-08-07 13:07:42 +00:00
}