mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
32 lines
555 B
C++
32 lines
555 B
C++
#pragma once
|
|
|
|
#include <DB/Parsers/ASTUseQuery.h>
|
|
#include <DB/Interpreters/Context.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
/** Выбрать БД по-умолчанию для сессии.
|
|
*/
|
|
class InterpreterUseQuery
|
|
{
|
|
public:
|
|
InterpreterUseQuery(ASTPtr query_ptr_, Context & context_)
|
|
: query_ptr(query_ptr_), context(context_) {}
|
|
|
|
void execute()
|
|
{
|
|
const String & new_database = dynamic_cast<const ASTUseQuery &>(*query_ptr).database;
|
|
context.getSessionContext().setCurrentDatabase(new_database);
|
|
}
|
|
|
|
private:
|
|
ASTPtr query_ptr;
|
|
Context & context;
|
|
};
|
|
|
|
|
|
}
|