2013-08-07 13:07:42 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Parsers/IAST.h>
|
2015-08-05 21:38:31 +00:00
|
|
|
|
2013-08-07 13:07:42 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-05-27 17:27:16 +00:00
|
|
|
/** ALTER query
|
2013-08-07 13:07:42 +00:00
|
|
|
* ALTER TABLE [db.]name_type
|
2017-04-01 07:20:54 +00:00
|
|
|
* ADD COLUMN col_name type [AFTER col_after],
|
2017-04-14 12:40:48 +00:00
|
|
|
* DROP COLUMN col_drop [FROM PARTITION partition],
|
2017-04-01 07:20:54 +00:00
|
|
|
* MODIFY COLUMN col_name type,
|
|
|
|
* DROP PARTITION partition
|
|
|
|
* RESHARD [COPY] PARTITION partition
|
|
|
|
* TO '/path/to/zookeeper/table' [WEIGHT w], ...
|
|
|
|
* USING expression
|
|
|
|
* [COORDINATE WITH 'coordinator_id']
|
2013-08-07 13:07:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class ASTAlterQuery : public IAST
|
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
enum ParameterType
|
|
|
|
{
|
|
|
|
ADD_COLUMN,
|
|
|
|
DROP_COLUMN,
|
|
|
|
MODIFY_COLUMN,
|
|
|
|
MODIFY_PRIMARY_KEY,
|
2016-05-05 18:28:46 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
DROP_PARTITION,
|
|
|
|
ATTACH_PARTITION,
|
|
|
|
FETCH_PARTITION,
|
|
|
|
FREEZE_PARTITION,
|
|
|
|
RESHARD_PARTITION,
|
2016-05-05 18:28:46 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
NO_TYPE,
|
|
|
|
};
|
2013-08-07 13:07:42 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
struct Parameters
|
|
|
|
{
|
|
|
|
Parameters();
|
2016-01-28 01:00:27 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
int type = NO_TYPE;
|
2013-08-07 13:07:42 +00:00
|
|
|
|
2017-05-27 17:27:16 +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
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
|
|
|
ASTPtr col_decl;
|
2014-07-10 10:16:50 +00:00
|
|
|
|
2017-05-27 17:27:16 +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
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
|
|
|
ASTPtr column;
|
2013-08-07 13:07:42 +00:00
|
|
|
|
2017-05-27 17:27:16 +00:00
|
|
|
/** For MODIFY PRIMARY KEY
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
|
|
|
ASTPtr primary_key;
|
2016-05-05 18:28:46 +00:00
|
|
|
|
2017-05-27 17:27:16 +00:00
|
|
|
/** In DROP PARTITION and RESHARD PARTITION queries, the name of the partition is stored here.
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
|
|
|
ASTPtr partition;
|
2017-05-27 17:27:16 +00:00
|
|
|
bool detach = false; /// true for DETACH PARTITION.
|
2014-08-06 09:24:30 +00:00
|
|
|
|
2017-05-27 17:27:16 +00:00
|
|
|
bool part = false; /// true for ATTACH PART
|
2014-08-07 11:46:01 +00:00
|
|
|
|
2017-05-27 17:27:16 +00:00
|
|
|
bool do_copy = false; /// for RESHARD PARTITION.
|
2016-03-25 11:48:45 +00:00
|
|
|
|
2017-05-27 17:27:16 +00:00
|
|
|
/** For FETCH PARTITION - the path in ZK to the shard, from which to download the partition.
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
|
|
|
String from;
|
2014-10-09 20:28:33 +00:00
|
|
|
|
2017-05-27 17:27:16 +00:00
|
|
|
/** For RESHARD PARTITION.
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
|
|
|
ASTPtr last_partition;
|
|
|
|
ASTPtr weighted_zookeeper_paths;
|
|
|
|
ASTPtr sharding_key_expr;
|
|
|
|
ASTPtr coordinator;
|
2016-01-28 01:00:27 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/** For FREEZE PARTITION - place local backup to directory with specified name.
|
|
|
|
*/
|
|
|
|
String with_name;
|
2016-06-28 20:50:37 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// deep copy
|
|
|
|
void clone(Parameters & p) const;
|
|
|
|
};
|
2016-01-28 01:00:27 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
using ParameterContainer = std::vector<Parameters>;
|
|
|
|
ParameterContainer parameters;
|
|
|
|
String database;
|
|
|
|
String table;
|
2013-08-07 13:07:42 +00:00
|
|
|
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void addParameters(const Parameters & params);
|
2014-08-06 09:24:30 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTAlterQuery(StringRange range_ = StringRange());
|
2013-08-07 13:07:42 +00:00
|
|
|
|
2017-05-27 17:27:16 +00:00
|
|
|
/** Get the text that identifies this element. */
|
2017-04-01 07:20:54 +00:00
|
|
|
String getID() const override;
|
2013-08-07 13:07:42 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTPtr clone() const override;
|
2015-08-05 21:38:31 +00:00
|
|
|
|
|
|
|
protected:
|
2017-04-01 07:20:54 +00:00
|
|
|
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
|
2013-08-07 13:07:42 +00:00
|
|
|
};
|
2015-08-05 21:38:31 +00:00
|
|
|
|
2013-08-07 13:07:42 +00:00
|
|
|
}
|