mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 01:41:59 +00:00
71 lines
2.0 KiB
C++
71 lines
2.0 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/ASTConstraintDeclaration.h>
|
|
#include <Interpreters/ExpressionActions.h>
|
|
#include <Interpreters/TreeCNFConverter.h>
|
|
#include <Interpreters/ComparisonGraph.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using ConstraintsExpressions = std::vector<ExpressionActionsPtr>;
|
|
|
|
struct ConstraintsDescription
|
|
{
|
|
public:
|
|
ConstraintsDescription() { update(); }
|
|
explicit ConstraintsDescription(const ASTs & constraints_);
|
|
ConstraintsDescription(const ConstraintsDescription & other);
|
|
ConstraintsDescription & operator=(const ConstraintsDescription & other);
|
|
|
|
ConstraintsDescription(ConstraintsDescription && other) noexcept;
|
|
ConstraintsDescription & operator=(ConstraintsDescription && other) noexcept;
|
|
|
|
bool empty() const { return constraints.empty(); }
|
|
String toString() const;
|
|
|
|
static ConstraintsDescription parse(const String & str);
|
|
|
|
enum class ConstraintType : UInt8
|
|
{
|
|
CHECK = 1,
|
|
ASSUME = 2,
|
|
ALWAYS_TRUE = CHECK | ASSUME,
|
|
ALL = CHECK | ASSUME,
|
|
};
|
|
|
|
ASTs filterConstraints(ConstraintType selection) const;
|
|
|
|
const ASTs & getConstraints() const;
|
|
|
|
const std::vector<std::vector<CNFQuery::AtomicFormula>> & getConstraintData() const;
|
|
std::vector<CNFQuery::AtomicFormula> getAtomicConstraintData() const;
|
|
|
|
const ComparisonGraph & getGraph() const;
|
|
|
|
ConstraintsExpressions getExpressions(ContextPtr context, const NamesAndTypesList & source_columns_) const;
|
|
|
|
struct AtomId
|
|
{
|
|
size_t group_id;
|
|
size_t atom_id;
|
|
};
|
|
|
|
using AtomIds = std::vector<AtomId>;
|
|
|
|
std::optional<AtomIds> getAtomIds(const ASTPtr & ast) const;
|
|
std::vector<CNFQuery::AtomicFormula> getAtomsById(const AtomIds & ids) const;
|
|
|
|
private:
|
|
std::vector<std::vector<CNFQuery::AtomicFormula>> buildConstraintData() const;
|
|
std::unique_ptr<ComparisonGraph> buildGraph() const;
|
|
void update();
|
|
|
|
ASTs constraints;
|
|
std::vector<std::vector<CNFQuery::AtomicFormula>> cnf_constraints;
|
|
std::map<IAST::Hash, AtomIds> ast_to_atom_ids;
|
|
std::unique_ptr<ComparisonGraph> graph;
|
|
};
|
|
|
|
}
|