2017-04-01 09:19:00 +00:00
|
|
|
#include <Parsers/ASTInsertQuery.h>
|
|
|
|
#include <Parsers/ASTSelectQuery.h>
|
|
|
|
#include <Parsers/ASTCreateQuery.h>
|
|
|
|
#include <Parsers/ASTDropQuery.h>
|
|
|
|
#include <Parsers/ASTRenameQuery.h>
|
|
|
|
#include <Parsers/ASTShowTablesQuery.h>
|
|
|
|
#include <Parsers/ASTUseQuery.h>
|
|
|
|
#include <Parsers/ASTSetQuery.h>
|
|
|
|
#include <Parsers/ASTOptimizeQuery.h>
|
|
|
|
#include <Parsers/ASTAlterQuery.h>
|
|
|
|
#include <Parsers/ASTShowProcesslistQuery.h>
|
|
|
|
#include <Parsers/TablePropertiesQueriesASTs.h>
|
|
|
|
#include <Parsers/ASTCheckQuery.h>
|
|
|
|
#include <Parsers/ASTKillQueryQuery.h>
|
2015-06-18 02:11:05 +00:00
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/InterpreterSelectQuery.h>
|
|
|
|
#include <Interpreters/InterpreterInsertQuery.h>
|
|
|
|
#include <Interpreters/InterpreterCreateQuery.h>
|
|
|
|
#include <Interpreters/InterpreterDropQuery.h>
|
|
|
|
#include <Interpreters/InterpreterRenameQuery.h>
|
|
|
|
#include <Interpreters/InterpreterShowTablesQuery.h>
|
|
|
|
#include <Interpreters/InterpreterUseQuery.h>
|
|
|
|
#include <Interpreters/InterpreterSetQuery.h>
|
|
|
|
#include <Interpreters/InterpreterOptimizeQuery.h>
|
|
|
|
#include <Interpreters/InterpreterExistsQuery.h>
|
|
|
|
#include <Interpreters/InterpreterDescribeQuery.h>
|
|
|
|
#include <Interpreters/InterpreterShowCreateQuery.h>
|
|
|
|
#include <Interpreters/InterpreterAlterQuery.h>
|
|
|
|
#include <Interpreters/InterpreterShowProcesslistQuery.h>
|
|
|
|
#include <Interpreters/InterpreterCheckQuery.h>
|
|
|
|
#include <Interpreters/InterpreterKillQueryQuery.h>
|
|
|
|
#include <Interpreters/InterpreterFactory.h>
|
2015-06-18 02:11:05 +00:00
|
|
|
|
2017-07-13 20:58:19 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
2017-08-04 15:54:00 +00:00
|
|
|
#include <Parsers/ASTSystemQuery.h>
|
|
|
|
#include "InterpreterSystemQuery.h"
|
|
|
|
|
2017-07-13 20:58:19 +00:00
|
|
|
|
2015-06-18 02:11:05 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-01-11 21:46:36 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int READONLY;
|
|
|
|
extern const int UNKNOWN_TYPE_OF_QUERY;
|
2016-01-11 21:46:36 +00:00
|
|
|
}
|
|
|
|
|
2015-06-18 02:11:05 +00:00
|
|
|
|
|
|
|
static void throwIfReadOnly(Context & context)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (context.getSettingsRef().limits.readonly)
|
|
|
|
throw Exception("Cannot execute query in readonly mode", ErrorCodes::READONLY);
|
2015-06-18 02:11:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-28 12:22:22 +00:00
|
|
|
std::unique_ptr<IInterpreter> InterpreterFactory::get(ASTPtr & query, Context & context, QueryProcessingStage::Enum stage)
|
2015-06-18 02:11:05 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (typeid_cast<ASTSelectQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
return std::make_unique<InterpreterSelectQuery>(query, context, stage);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTInsertQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
throwIfReadOnly(context);
|
|
|
|
return std::make_unique<InterpreterInsertQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTCreateQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
throwIfReadOnly(context);
|
|
|
|
return std::make_unique<InterpreterCreateQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTDropQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
throwIfReadOnly(context);
|
|
|
|
return std::make_unique<InterpreterDropQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTRenameQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
throwIfReadOnly(context);
|
|
|
|
return std::make_unique<InterpreterRenameQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTShowTablesQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
return std::make_unique<InterpreterShowTablesQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTUseQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
return std::make_unique<InterpreterUseQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTSetQuery *>(query.get()))
|
|
|
|
{
|
2017-04-02 17:37:49 +00:00
|
|
|
/// readonly is checked inside InterpreterSetQuery
|
2017-04-01 07:20:54 +00:00
|
|
|
return std::make_unique<InterpreterSetQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTOptimizeQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
throwIfReadOnly(context);
|
|
|
|
return std::make_unique<InterpreterOptimizeQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTExistsQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
return std::make_unique<InterpreterExistsQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTShowCreateQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
return std::make_unique<InterpreterShowCreateQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTDescribeQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
return std::make_unique<InterpreterDescribeQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTShowProcesslistQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
return std::make_unique<InterpreterShowProcesslistQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTAlterQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
throwIfReadOnly(context);
|
|
|
|
return std::make_unique<InterpreterAlterQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTCheckQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
return std::make_unique<InterpreterCheckQuery>(query, context);
|
|
|
|
}
|
|
|
|
else if (typeid_cast<ASTKillQueryQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
return std::make_unique<InterpreterKillQueryQuery>(query, context);
|
|
|
|
}
|
2017-08-04 15:54:00 +00:00
|
|
|
else if (typeid_cast<ASTSystemQuery *>(query.get()))
|
|
|
|
{
|
|
|
|
throwIfReadOnly(context);
|
|
|
|
return std::make_unique<InterpreterSystemQuery>(query, context);
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
else
|
|
|
|
throw Exception("Unknown type of query: " + query->getID(), ErrorCodes::UNKNOWN_TYPE_OF_QUERY);
|
2015-06-18 02:11:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|