mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
38 lines
1.0 KiB
C++
38 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <DB/Interpreters/Context.h>
|
|
#include <DB/Interpreters/IInterpreter.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ASTSetQuery;
|
|
|
|
/** Установить один или несколько параметров, для сессии или глобально... или для текущего запроса.
|
|
*/
|
|
class InterpreterSetQuery : public IInterpreter
|
|
{
|
|
public:
|
|
InterpreterSetQuery(ASTPtr query_ptr_, Context & context_)
|
|
: query_ptr(query_ptr_), context(context_) {}
|
|
|
|
/** Обычный запрос SET. Задать настройку на сессию или глобальную (если указано GLOBAL).
|
|
*/
|
|
BlockIO execute() override;
|
|
|
|
/** Задать настроку для текущего контекста (контекста запроса).
|
|
* Используется для интерпретации секции SETTINGS в запросе SELECT.
|
|
*/
|
|
void executeForCurrentContext();
|
|
|
|
private:
|
|
ASTPtr query_ptr;
|
|
Context & context;
|
|
|
|
void executeImpl(ASTSetQuery & ast, Context & target);
|
|
};
|
|
|
|
|
|
}
|