2019-05-17 04:08:03 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Parsers/ASTConstraintDeclaration.h>
|
2019-05-19 05:27:00 +00:00
|
|
|
#include <Interpreters/ExpressionAnalyzer.h>
|
2019-05-17 04:08:03 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2019-05-19 05:27:00 +00:00
|
|
|
using ConstraintsExpressions = std::vector<ExpressionActionsPtr>;
|
2019-05-17 04:08:03 +00:00
|
|
|
|
|
|
|
struct ConstraintsDescription
|
|
|
|
{
|
2020-05-12 11:47:59 +00:00
|
|
|
std::vector<ASTPtr> constraints;
|
2019-05-17 04:08:03 +00:00
|
|
|
|
|
|
|
ConstraintsDescription() = default;
|
|
|
|
|
|
|
|
bool empty() const { return constraints.empty(); }
|
|
|
|
String toString() const;
|
|
|
|
|
|
|
|
static ConstraintsDescription parse(const String & str);
|
2019-05-19 05:27:00 +00:00
|
|
|
|
2019-05-25 14:07:45 +00:00
|
|
|
ConstraintsExpressions getExpressions(const Context & context, const NamesAndTypesList & source_columns_) const;
|
2020-06-05 17:29:40 +00:00
|
|
|
|
|
|
|
ConstraintsDescription(const ConstraintsDescription & other);
|
|
|
|
ConstraintsDescription & operator=(const ConstraintsDescription & other);
|
2019-05-17 04:08:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|