ClickHouse/dbms/src/Parsers/ASTAlterQuery.h

135 lines
3.4 KiB
C++
Raw Normal View History

2013-08-07 13:07:42 +00:00
#pragma once
#include <Parsers/IAST.h>
#include <Parsers/ASTQueryWithOutput.h>
2017-04-21 12:39:28 +00:00
#include <Parsers/ASTQueryWithOnCluster.h>
2013-08-07 13:07:42 +00:00
namespace DB
{
2017-04-21 12:39:28 +00:00
/** ALTER query:
2013-08-07 13:07:42 +00:00
* ALTER TABLE [db.]name_type
* ADD COLUMN col_name type [AFTER col_after],
2017-04-21 12:39:28 +00:00
* DROP COLUMN col_drop [FROM PARTITION partition],
* MODIFY COLUMN col_name type,
* DROP PARTITION partition,
2013-08-07 13:07:42 +00:00
*/
class ASTAlterCommand : public IAST
2013-08-07 13:07:42 +00:00
{
public:
enum Type
{
ADD_COLUMN,
DROP_COLUMN,
MODIFY_COLUMN,
MODIFY_PRIMARY_KEY,
DROP_PARTITION,
ATTACH_PARTITION,
REPLACE_PARTITION,
FETCH_PARTITION,
FREEZE_PARTITION,
DELETE,
UPDATE,
NO_TYPE,
};
2013-08-07 13:07:42 +00:00
Type type = NO_TYPE;
2016-01-28 01:00:27 +00:00
/** The ADD COLUMN query stores the name and type of the column to add
* This field is not used in the DROP query
* In MODIFY query, the column name and the new type are stored here
*/
ASTPtr col_decl;
2013-08-07 13:07:42 +00:00
/** The ADD COLUMN query here optionally stores the name of the column following AFTER
* The DROP query stores the column name for deletion here
*/
ASTPtr column;
2014-07-10 10:16:50 +00:00
/** For MODIFY PRIMARY KEY
*/
ASTPtr primary_key;
2013-08-07 13:07:42 +00:00
2018-06-13 20:00:10 +00:00
/** Used in DROP PARTITION and ATTACH PARTITION FROM queries.
* The value or ID of the partition is stored here.
*/
ASTPtr partition;
/// For DELETE/UPDATE WHERE: the predicate that filters the rows to delete/update.
ASTPtr predicate;
/// A list of expressions of the form `column = expr` for the UPDATE command.
ASTPtr update_assignments;
bool detach = false; /// true for DETACH PARTITION
bool part = false; /// true for ATTACH PART
bool clear_column = false; /// for CLEAR COLUMN (do not drop column from metadata)
/** For FETCH PARTITION - the path in ZK to the shard, from which to download the partition.
*/
String from;
2016-03-25 11:48:45 +00:00
/** For FREEZE PARTITION - place local backup to directory with specified name.
*/
String with_name;
/// REPLACE(ATTACH) PARTITION partition FROM db.table
String from_database;
String from_table;
/// To distinguish REPLACE and ATTACH PARTITION partition FROM db.table
bool replace = true;
String getID() const override { return "AlterCommand_" + std::to_string(static_cast<int>(type)); }
ASTPtr clone() const override;
protected:
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
};
class ASTAlterCommandList : public IAST
{
public:
std::vector<ASTAlterCommand *> commands;
void add(const ASTPtr & command)
{
commands.push_back(static_cast<ASTAlterCommand *>(command.get()));
children.push_back(command);
}
String getID() const override { return "AlterCommandList"; }
ASTPtr clone() const override;
2016-01-28 01:00:27 +00:00
protected:
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
};
class ASTAlterQuery : public ASTQueryWithOutput, public ASTQueryWithOnCluster
{
public:
String database;
String table;
2013-08-07 13:07:42 +00:00
ASTAlterCommandList * command_list = nullptr;
2013-08-07 13:07:42 +00:00
String getID() const override;
2013-08-07 13:07:42 +00:00
ASTPtr clone() const override;
ASTPtr getRewrittenASTWithoutOnCluster(const std::string & new_database) const override;
2017-04-21 12:39:28 +00:00
protected:
void formatQueryImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
2013-08-07 13:07:42 +00:00
};
2013-08-07 13:07:42 +00:00
}