mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
26 lines
577 B
C++
26 lines
577 B
C++
#include <Parsers/ASTSetQuery.h>
|
|
#include <Interpreters/Context.h>
|
|
#include <Interpreters/InterpreterSetQuery.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
BlockIO InterpreterSetQuery::execute()
|
|
{
|
|
const auto & ast = query_ptr->as<ASTSetQuery &>();
|
|
context.checkSettingsConstraints(ast.changes);
|
|
context.getSessionContext().applySettingsChanges(ast.changes);
|
|
return {};
|
|
}
|
|
|
|
|
|
void InterpreterSetQuery::executeForCurrentContext()
|
|
{
|
|
const auto & ast = query_ptr->as<ASTSetQuery &>();
|
|
context.checkSettingsConstraints(ast.changes);
|
|
context.applySettingsChanges(ast.changes);
|
|
}
|
|
|
|
}
|