mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
a7e838e328
Also remove some redundant methods like IsIdentifier() et. al.
183 lines
6.8 KiB
C++
183 lines
6.8 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
#include <Parsers/ASTSubquery.h>
|
|
#include <Parsers/ASTFunction.h>
|
|
#include <Parsers/ASTTablesInSelectQuery.h>
|
|
#include <Parsers/ASTSelectQuery.h>
|
|
#include <Parsers/ASTIdentifier.h>
|
|
#include <Interpreters/Context.h>
|
|
#include <Interpreters/ActionsVisitor.h>
|
|
#include <Interpreters/interpretSubquery.h>
|
|
#include <Common/typeid_cast.h>
|
|
#include <Core/Block.h>
|
|
#include <Core/NamesAndTypes.h>
|
|
#include <Databases/IDatabase.h>
|
|
#include <Storages/StorageMemory.h>
|
|
#include <IO/WriteHelpers.h>
|
|
#include <Interpreters/InDepthNodeVisitor.h>
|
|
#include <Interpreters/IdentifierSemantic.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
class GlobalSubqueriesMatcher
|
|
{
|
|
public:
|
|
struct Data
|
|
{
|
|
const Context & context;
|
|
size_t subquery_depth;
|
|
bool is_remote;
|
|
size_t external_table_id;
|
|
Tables & external_tables;
|
|
SubqueriesForSets & subqueries_for_sets;
|
|
bool & has_global_subqueries;
|
|
|
|
Data(const Context & context_, size_t subquery_depth_, bool is_remote_,
|
|
Tables & tables, SubqueriesForSets & subqueries_for_sets_, bool & has_global_subqueries_)
|
|
: context(context_),
|
|
subquery_depth(subquery_depth_),
|
|
is_remote(is_remote_),
|
|
external_table_id(1),
|
|
external_tables(tables),
|
|
subqueries_for_sets(subqueries_for_sets_),
|
|
has_global_subqueries(has_global_subqueries_)
|
|
{}
|
|
|
|
void addExternalStorage(ASTPtr & subquery_or_table_name_or_table_expression)
|
|
{
|
|
/// With nondistributed queries, creating temporary tables does not make sense.
|
|
if (!is_remote)
|
|
return;
|
|
|
|
ASTPtr subquery;
|
|
ASTPtr table_name;
|
|
ASTPtr subquery_or_table_name;
|
|
|
|
if (subquery_or_table_name_or_table_expression->As<ASTIdentifier>())
|
|
{
|
|
table_name = subquery_or_table_name_or_table_expression;
|
|
subquery_or_table_name = table_name;
|
|
}
|
|
else if (const auto * ast_table_expr = subquery_or_table_name_or_table_expression->As<ASTTableExpression>())
|
|
{
|
|
if (ast_table_expr->database_and_table_name)
|
|
{
|
|
table_name = ast_table_expr->database_and_table_name;
|
|
subquery_or_table_name = table_name;
|
|
}
|
|
else if (ast_table_expr->subquery)
|
|
{
|
|
subquery = ast_table_expr->subquery;
|
|
subquery_or_table_name = subquery;
|
|
}
|
|
}
|
|
else if (subquery_or_table_name_or_table_expression->As<ASTSubquery>())
|
|
{
|
|
subquery = subquery_or_table_name_or_table_expression;
|
|
subquery_or_table_name = subquery;
|
|
}
|
|
|
|
if (!subquery_or_table_name)
|
|
throw Exception("Logical error: unknown AST element passed to ExpressionAnalyzer::addExternalStorage method",
|
|
ErrorCodes::LOGICAL_ERROR);
|
|
|
|
if (table_name)
|
|
{
|
|
/// If this is already an external table, you do not need to add anything. Just remember its presence.
|
|
if (external_tables.end() != external_tables.find(*getIdentifierName(table_name)))
|
|
return;
|
|
}
|
|
|
|
/// Generate the name for the external table.
|
|
String external_table_name = "_data" + toString(external_table_id);
|
|
while (external_tables.count(external_table_name))
|
|
{
|
|
++external_table_id;
|
|
external_table_name = "_data" + toString(external_table_id);
|
|
}
|
|
|
|
auto interpreter = interpretSubquery(subquery_or_table_name, context, subquery_depth, {});
|
|
|
|
Block sample = interpreter->getSampleBlock();
|
|
NamesAndTypesList columns = sample.getNamesAndTypesList();
|
|
|
|
StoragePtr external_storage = StorageMemory::create(external_table_name, ColumnsDescription{columns});
|
|
external_storage->startup();
|
|
|
|
/** We replace the subquery with the name of the temporary table.
|
|
* It is in this form, the request will go to the remote server.
|
|
* This temporary table will go to the remote server, and on its side,
|
|
* instead of doing a subquery, you just need to read it.
|
|
*/
|
|
|
|
auto database_and_table_name = createTableIdentifier("", external_table_name);
|
|
|
|
if (auto * ast_table_expr = subquery_or_table_name_or_table_expression->As<ASTTableExpression>())
|
|
{
|
|
ast_table_expr->subquery.reset();
|
|
ast_table_expr->database_and_table_name = database_and_table_name;
|
|
|
|
ast_table_expr->children.clear();
|
|
ast_table_expr->children.emplace_back(database_and_table_name);
|
|
}
|
|
else
|
|
subquery_or_table_name_or_table_expression = database_and_table_name;
|
|
|
|
external_tables[external_table_name] = external_storage;
|
|
subqueries_for_sets[external_table_name].source = interpreter->execute().in;
|
|
subqueries_for_sets[external_table_name].table = external_storage;
|
|
|
|
/** NOTE If it was written IN tmp_table - the existing temporary (but not external) table,
|
|
* then a new temporary table will be created (for example, _data1),
|
|
* and the data will then be copied to it.
|
|
* Maybe this can be avoided.
|
|
*/
|
|
}
|
|
};
|
|
|
|
static void visit(ASTPtr & ast, Data & data)
|
|
{
|
|
if (auto * t = ast->As<ASTFunction>())
|
|
visit(*t, ast, data);
|
|
if (auto * t = ast->As<ASTTablesInSelectQueryElement>())
|
|
visit(*t, ast, data);
|
|
}
|
|
|
|
static bool needChildVisit(ASTPtr &, const ASTPtr & child)
|
|
{
|
|
/// We do not go into subqueries.
|
|
if (child->As<ASTSelectQuery>())
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
private:
|
|
/// GLOBAL IN
|
|
static void visit(ASTFunction & func, ASTPtr &, Data & data)
|
|
{
|
|
if (func.name == "globalIn" || func.name == "globalNotIn")
|
|
{
|
|
data.addExternalStorage(func.arguments->children[1]);
|
|
data.has_global_subqueries = true;
|
|
}
|
|
}
|
|
|
|
/// GLOBAL JOIN
|
|
static void visit(ASTTablesInSelectQueryElement & table_elem, ASTPtr &, Data & data)
|
|
{
|
|
if (table_elem.table_join && table_elem.table_join->As<ASTTableJoin>()->locality == ASTTableJoin::Locality::Global)
|
|
{
|
|
data.addExternalStorage(table_elem.table_expression);
|
|
data.has_global_subqueries = true;
|
|
}
|
|
}
|
|
};
|
|
|
|
/// Converts GLOBAL subqueries to external tables; Puts them into the external_tables dictionary: name -> StoragePtr.
|
|
using GlobalSubqueriesVisitor = InDepthNodeVisitor<GlobalSubqueriesMatcher, false>;
|
|
|
|
}
|