mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
24 lines
397 B
C++
24 lines
397 B
C++
#pragma once
|
|
|
|
#include <Core/QueryProcessingStage.h>
|
|
#include <Interpreters/IInterpreter.h>
|
|
#include <Interpreters/SelectQueryOptions.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
class InterpreterFactory
|
|
{
|
|
public:
|
|
static std::unique_ptr<IInterpreter> get(
|
|
ASTPtr & query,
|
|
ContextMutablePtr context,
|
|
const SelectQueryOptions & options = {});
|
|
};
|
|
|
|
}
|