mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
27 lines
562 B
C++
27 lines
562 B
C++
#pragma once
|
|
|
|
#include <Interpreters/IInterpreter.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ASTCreateRowPolicyQuery;
|
|
struct RowPolicy;
|
|
|
|
class InterpreterCreateRowPolicyQuery : public IInterpreter, WithMutableContext
|
|
{
|
|
public:
|
|
InterpreterCreateRowPolicyQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_) : WithMutableContext(context_), query_ptr(query_ptr_) {}
|
|
|
|
BlockIO execute() override;
|
|
|
|
static void updateRowPolicyFromQuery(RowPolicy & policy, const ASTCreateRowPolicyQuery & query);
|
|
|
|
private:
|
|
ASTPtr query_ptr;
|
|
};
|
|
|
|
}
|