ClickHouse/dbms/src/Interpreters/InterpreterSetQuery.h

41 lines
871 B
C++
Raw Normal View History

2012-08-02 19:03:32 +00:00
#pragma once
#include <Interpreters/IInterpreter.h>
2012-08-02 19:03:32 +00:00
namespace DB
{
2017-05-23 18:24:43 +00:00
class Context;
class IAST;
2016-12-12 07:24:56 +00:00
class ASTSetQuery;
2017-05-23 18:24:43 +00:00
using ASTPtr = std::shared_ptr<IAST>;
2012-08-02 19:03:32 +00:00
2017-05-23 18:24:43 +00:00
/** Change one or several settings, for session or globally, or just for current context.
2012-08-02 19:03:32 +00:00
*/
2015-06-18 02:11:05 +00:00
class InterpreterSetQuery : public IInterpreter
2012-08-02 19:03:32 +00:00
{
public:
2017-05-23 18:24:43 +00:00
InterpreterSetQuery(const ASTPtr & query_ptr_, Context & context_)
: query_ptr(query_ptr_), context(context_) {}
2012-08-02 19:03:32 +00:00
2017-05-23 18:24:43 +00:00
/** Usual SET query. Set setting for session or globally (if GLOBAL was specified).
*/
BlockIO execute() override;
2017-05-23 18:24:43 +00:00
/** 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;
2012-08-02 19:03:32 +00:00
2017-05-23 18:24:43 +00:00
void executeImpl(const ASTSetQuery & ast, Context & target);
2012-08-02 19:03:32 +00:00
};
}