| 27 | |
| 28 | |
| 29 | void InterpreterSetQuery::executeForCurrentContext() |
| 30 | { |
| 31 | const auto & ast = query_ptr->as<ASTSetQuery &>(); |
| 32 | getContext()->checkSettingsConstraints(ast.changes); |
| 33 | getContext()->applySettingsChanges(ast.changes, false); |
| 34 | } |
| 35 | |
| 36 | void InterpreterSetQuery::applySettingsFromQuery(const ASTPtr & ast, ContextMutablePtr setting_scontext) |
| 37 | { |
no test coverage detected