ClickHouse/src/Interpreters/InterpreterUseQuery.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
831 B
C++
Raw Normal View History

#include <Parsers/ASTUseQuery.h>
#include <Interpreters/Context.h>
#include <Interpreters/InterpreterFactory.h>
#include <Interpreters/InterpreterUseQuery.h>
#include <Access/Common/AccessFlags.h>
2017-07-13 20:58:19 +00:00
#include <Common/typeid_cast.h>
2016-12-12 07:24:56 +00:00
namespace DB
{
BlockIO InterpreterUseQuery::execute()
2016-12-12 07:24:56 +00:00
{
2023-08-15 18:37:39 +00:00
const String & new_database = query_ptr->as<ASTUseQuery &>().getDatabase();
getContext()->checkAccess(AccessType::SHOW_DATABASES, new_database);
getContext()->getSessionContext()->setCurrentDatabase(new_database);
2016-12-12 07:24:56 +00:00
return {};
}
void registerInterpreterUseQuery(InterpreterFactory & factory)
{
auto create_fn = [] (const InterpreterFactory::Arguments & args)
{
return std::make_unique<InterpreterUseQuery>(args.query, args.context);
};
factory.registerInterpreter("InterpreterUseQuery", create_fn);
}
2016-12-12 07:24:56 +00:00
}