aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Interpreters/InterpreterExternalDDLQuery.h
blob: d084e68d7c824f91bd33ad739ef59e90ca1c2feb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include <Parsers/IAST_fwd.h>
#include <Interpreters/IInterpreter.h>

namespace DB
{

class InterpreterExternalDDLQuery : public IInterpreter, WithMutableContext
{
public:
    InterpreterExternalDDLQuery(const ASTPtr & query_, ContextMutablePtr context_);

    BlockIO execute() override;

private:
    const ASTPtr query;

};

}