mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
41 lines
813 B
C++
41 lines
813 B
C++
#pragma once
|
|
|
|
#include <Interpreters/IInterpreter.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
class IAST;
|
|
class ASTSetQuery;
|
|
using ASTPtr = std::shared_ptr<IAST>;
|
|
|
|
|
|
/** Change one or several settings for the session or just for the current context.
|
|
*/
|
|
class InterpreterSetQuery : public IInterpreter
|
|
{
|
|
public:
|
|
InterpreterSetQuery(const ASTPtr & query_ptr_, Context & context_)
|
|
: query_ptr(query_ptr_), context(context_) {}
|
|
|
|
/** Usual SET query. Set setting for the session.
|
|
*/
|
|
BlockIO execute() override;
|
|
|
|
void checkAccess(const ASTSetQuery & ast);
|
|
|
|
/** Set setting for current context (query context).
|
|
* It is used for interpretation of SETTINGS clause in SELECT query.
|
|
*/
|
|
void executeForCurrentContext();
|
|
|
|
private:
|
|
ASTPtr query_ptr;
|
|
Context & context;
|
|
};
|
|
|
|
|
|
}
|