2012-08-02 19:03:32 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <DB/Parsers/ASTSetQuery.h>
|
|
|
|
|
#include <DB/Interpreters/Context.h>
|
2015-06-18 02:11:05 +00:00
|
|
|
|
#include <DB/Interpreters/IInterpreter.h>
|
2012-08-02 19:03:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
2016-01-11 21:46:36 +00:00
|
|
|
|
namespace ErrorCodes
|
|
|
|
|
{
|
|
|
|
|
extern const int READONLY;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-02 19:03:32 +00:00
|
|
|
|
|
2015-06-05 21:28:04 +00:00
|
|
|
|
/** Установить один или несколько параметров, для сессии или глобально... или для текущего запроса.
|
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:
|
|
|
|
|
InterpreterSetQuery(ASTPtr query_ptr_, Context & context_)
|
|
|
|
|
: query_ptr(query_ptr_), context(context_) {}
|
|
|
|
|
|
2015-06-05 21:28:04 +00:00
|
|
|
|
/** Обычный запрос SET. Задать настройку на сессию или глобальную (если указано GLOBAL).
|
|
|
|
|
*/
|
2015-06-18 02:11:05 +00:00
|
|
|
|
BlockIO execute() override
|
2012-08-02 19:03:32 +00:00
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
|
ASTSetQuery & ast = typeid_cast<ASTSetQuery &>(*query_ptr);
|
2012-08-02 19:03:32 +00:00
|
|
|
|
Context & target = ast.global ? context.getGlobalContext() : context.getSessionContext();
|
2015-06-05 21:28:04 +00:00
|
|
|
|
executeImpl(ast, target);
|
2015-06-18 02:11:05 +00:00
|
|
|
|
return {};
|
2015-06-05 21:28:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Задать настроку для текущего контекста (контекста запроса).
|
|
|
|
|
* Используется для интерпретации секции SETTINGS в запросе SELECT.
|
|
|
|
|
*/
|
|
|
|
|
void executeForCurrentContext()
|
|
|
|
|
{
|
|
|
|
|
ASTSetQuery & ast = typeid_cast<ASTSetQuery &>(*query_ptr);
|
|
|
|
|
executeImpl(ast, context);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
ASTPtr query_ptr;
|
|
|
|
|
Context & context;
|
2012-08-02 19:03:32 +00:00
|
|
|
|
|
2015-06-05 21:28:04 +00:00
|
|
|
|
void executeImpl(ASTSetQuery & ast, Context & target)
|
|
|
|
|
{
|
2015-02-27 20:35:26 +00:00
|
|
|
|
/** Значение readonly понимается следующим образом:
|
2015-06-05 21:28:04 +00:00
|
|
|
|
* 0 - можно всё.
|
|
|
|
|
* 1 - можно делать только запросы на чтение; в том числе, нельзя менять настройки.
|
|
|
|
|
* 2 - можно делать только запросы на чтение и можно менять настройки, кроме настройки readonly.
|
|
|
|
|
*/
|
2015-02-27 20:35:26 +00:00
|
|
|
|
|
|
|
|
|
if (context.getSettingsRef().limits.readonly == 1)
|
|
|
|
|
throw Exception("Cannot execute SET query in readonly mode", ErrorCodes::READONLY);
|
|
|
|
|
|
|
|
|
|
if (context.getSettingsRef().limits.readonly > 1)
|
|
|
|
|
for (ASTSetQuery::Changes::const_iterator it = ast.changes.begin(); it != ast.changes.end(); ++it)
|
|
|
|
|
if (it->name == "readonly")
|
|
|
|
|
throw Exception("Cannot modify 'readonly' setting in readonly mode", ErrorCodes::READONLY);
|
|
|
|
|
|
2012-08-02 19:03:32 +00:00
|
|
|
|
for (ASTSetQuery::Changes::const_iterator it = ast.changes.begin(); it != ast.changes.end(); ++it)
|
|
|
|
|
target.setSetting(it->name, it->value);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|