ClickHouse/src/Parsers/ASTConstraintDeclaration.h
2020-04-03 18:14:31 +03:00

23 lines
393 B
C++

#pragma once
#include <Parsers/IAST.h>
namespace DB
{
/** name CHECK logical_expr
*/
class ASTConstraintDeclaration : public IAST
{
public:
String name;
IAST * expr;
String getID(char) const override { return "Constraint"; }
ASTPtr clone() const override;
void formatImpl(const FormatSettings & s, FormatState & state, FormatStateStacked frame) const override;
};
}