mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
44 lines
836 B
C++
44 lines
836 B
C++
#pragma once
|
|
|
|
#include <DB/Parsers/IAST.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Name, type, default-specifier, default-expression.
|
|
* The type is optional if default-expression is specified.
|
|
*/
|
|
class ASTColumnDeclaration : public IAST
|
|
{
|
|
public:
|
|
String name;
|
|
ASTPtr type;
|
|
String default_specifier;
|
|
ASTPtr default_expression;
|
|
|
|
ASTColumnDeclaration() = default;
|
|
ASTColumnDeclaration(StringRange range) : IAST{range} {}
|
|
|
|
String getID() const { return "ColumnDeclaration_" + name; }
|
|
|
|
ASTPtr clone() const
|
|
{
|
|
const auto res = new ASTColumnDeclaration{*this};
|
|
res->children.clear();
|
|
|
|
if (type) {
|
|
res->type = type->clone();
|
|
res->children.push_back(res->type);
|
|
}
|
|
|
|
if (default_expression) {
|
|
res->default_expression = default_expression->clone();
|
|
res->children.push_back(res->default_expression);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
};
|
|
|
|
}
|