2012-08-02 19:03:32 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/IInterpreter.h>
|
2019-03-11 14:01:45 +00:00
|
|
|
#include <Parsers/IAST_fwd.h>
|
2012-08-02 19:03:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-12-12 07:24:56 +00:00
|
|
|
class ASTSetQuery;
|
2012-08-02 19:03:32 +00:00
|
|
|
|
2017-09-17 18:49:43 +00:00
|
|
|
/** Change one or several settings for the session or just for the current context.
|
2012-08-02 19:03:32 +00:00
|
|
|
*/
|
2021-05-31 14:49:02 +00:00
|
|
|
class InterpreterSetQuery : public IInterpreter, WithMutableContext
|
2012-08-02 19:03:32 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-05-31 14:49:02 +00:00
|
|
|
InterpreterSetQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_) : WithMutableContext(context_), query_ptr(query_ptr_) {}
|
2012-08-02 19:03:32 +00:00
|
|
|
|
2017-09-17 18:49:43 +00:00
|
|
|
/** Usual SET query. Set setting for the session.
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
|
|
|
BlockIO execute() override;
|
2015-06-05 21:28:04 +00:00
|
|
|
|
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.
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
|
|
|
void executeForCurrentContext();
|
2015-06-05 21:28:04 +00:00
|
|
|
|
2022-01-31 22:27:55 +00:00
|
|
|
bool supportsTransactions() const override { return true; }
|
|
|
|
|
2015-06-05 21:28:04 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTPtr query_ptr;
|
2012-08-02 19:03:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|