ClickHouse/src/Interpreters/IInterpreter.cpp

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

54 lines
2.0 KiB
C++
Raw Normal View History

2020-12-14 03:30:39 +00:00
#include <Interpreters/IInterpreter.h>
#include <Interpreters/QueryLog.h>
#include <Interpreters/Context.h>
#include <Storages/IStorage.h>
2020-12-14 03:30:39 +00:00
namespace DB
{
namespace ErrorCodes
{
extern const int NOT_IMPLEMENTED;
}
2023-02-01 02:11:54 +00:00
2020-12-14 03:30:39 +00:00
void IInterpreter::extendQueryLogElem(
QueryLogElement & elem, const ASTPtr & ast, ContextPtr context, const String & query_database, const String & query_table) const
2020-12-14 03:30:39 +00:00
{
if (!query_database.empty() && query_table.empty())
{
elem.query_databases.insert(backQuoteIfNeed(query_database));
}
else if (!query_table.empty())
{
auto quoted_database = query_database.empty() ? backQuoteIfNeed(context->getCurrentDatabase())
: backQuoteIfNeed(query_database);
2020-12-14 03:30:39 +00:00
elem.query_databases.insert(quoted_database);
elem.query_tables.insert(quoted_database + "." + backQuoteIfNeed(query_table));
}
extendQueryLogElemImpl(elem, ast, context);
}
void IInterpreter::checkStorageSupportsTransactionsIfNeeded(const StoragePtr & storage, ContextPtr context, bool is_readonly_query)
{
if (!context->getCurrentTransaction())
return;
if (storage->supportsTransactions())
return;
if (context->getSettingsRef().throw_on_unsupported_query_inside_transaction)
throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Storage {} (table {}) does not support transactions",
storage->getName(), storage->getStorageID().getNameForLogs());
/// Do not allow transactions with ReplicatedMergeTree anyway (unless it's a readonly SELECT query)
/// because it may try to process transaction on MergeTreeData-level,
/// but then fail with a logical error or something on StorageReplicatedMergeTree-level.
if (!is_readonly_query && storage->supportsReplication())
throw Exception(ErrorCodes::NOT_IMPLEMENTED, "ReplicatedMergeTree (table {}) does not support transactions",
storage->getStorageID().getNameForLogs());
}
2020-12-14 03:30:39 +00:00
}