2018-10-30 16:31:21 +00:00
|
|
|
#include <Interpreters/DatabaseAndTableWithAlias.h>
|
2018-08-22 06:42:37 +00:00
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Common/typeid_cast.h>
|
|
|
|
|
2018-09-27 19:25:18 +00:00
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
#include <Parsers/ASTIdentifier.h>
|
|
|
|
#include <Parsers/ASTTablesInSelectQuery.h>
|
2018-10-26 15:13:02 +00:00
|
|
|
#include <Parsers/ASTSelectQuery.h>
|
2018-10-29 19:04:28 +00:00
|
|
|
#include <Parsers/ASTSubquery.h>
|
2018-09-27 19:25:18 +00:00
|
|
|
|
2018-08-22 06:42:37 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
/// Checks that ast is ASTIdentifier and remove num_qualifiers_to_strip components from left.
|
|
|
|
/// Example: 'database.table.name' -> (num_qualifiers_to_strip = 2) -> 'name'.
|
|
|
|
void stripIdentifier(DB::ASTPtr & ast, size_t num_qualifiers_to_strip)
|
|
|
|
{
|
|
|
|
ASTIdentifier * identifier = typeid_cast<ASTIdentifier *>(ast.get());
|
|
|
|
|
|
|
|
if (!identifier)
|
|
|
|
throw DB::Exception("ASTIdentifier expected for stripIdentifier", DB::ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
if (num_qualifiers_to_strip)
|
|
|
|
{
|
|
|
|
size_t num_components = identifier->children.size();
|
|
|
|
|
|
|
|
/// plain column
|
|
|
|
if (num_components - num_qualifiers_to_strip == 1)
|
|
|
|
{
|
|
|
|
DB::String node_alias = identifier->tryGetAlias();
|
|
|
|
ast = identifier->children.back();
|
|
|
|
if (!node_alias.empty())
|
|
|
|
ast->setAlias(node_alias);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/// nested column
|
|
|
|
{
|
|
|
|
identifier->children.erase(identifier->children.begin(), identifier->children.begin() + num_qualifiers_to_strip);
|
|
|
|
DB::String new_name;
|
|
|
|
for (const auto & child : identifier->children)
|
|
|
|
{
|
|
|
|
if (!new_name.empty())
|
|
|
|
new_name += '.';
|
|
|
|
new_name += static_cast<const ASTIdentifier &>(*child.get()).name;
|
|
|
|
}
|
|
|
|
identifier->name = new_name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the number of components of identifier which are correspond to 'alias.', 'table.' or 'databas.table.' from names.
|
|
|
|
size_t getNumComponentsToStripInOrderToTranslateQualifiedName(const ASTIdentifier & identifier,
|
|
|
|
const DatabaseAndTableWithAlias & names)
|
|
|
|
{
|
|
|
|
size_t num_qualifiers_to_strip = 0;
|
|
|
|
|
|
|
|
/// It is compound identifier
|
|
|
|
if (!identifier.children.empty())
|
|
|
|
{
|
|
|
|
size_t num_components = identifier.children.size();
|
|
|
|
|
|
|
|
/// database.table.column
|
|
|
|
if (num_components >= 3
|
|
|
|
&& !names.database.empty()
|
2019-01-14 18:15:04 +00:00
|
|
|
&& *getIdentifierName(identifier.children[0]) == names.database
|
|
|
|
&& *getIdentifierName(identifier.children[1]) == names.table)
|
2018-08-22 06:42:37 +00:00
|
|
|
{
|
|
|
|
num_qualifiers_to_strip = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// table.column or alias.column. If num_components > 2, it is like table.nested.column.
|
|
|
|
if (num_components >= 2
|
2019-01-14 18:15:04 +00:00
|
|
|
&& ((!names.table.empty() && *getIdentifierName(identifier.children[0]) == names.table)
|
|
|
|
|| (!names.alias.empty() && *getIdentifierName(identifier.children[0]) == names.alias)))
|
2018-08-22 06:42:37 +00:00
|
|
|
{
|
|
|
|
num_qualifiers_to_strip = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return num_qualifiers_to_strip;
|
|
|
|
}
|
|
|
|
|
2018-10-30 16:31:21 +00:00
|
|
|
|
|
|
|
DatabaseAndTableWithAlias::DatabaseAndTableWithAlias(const ASTIdentifier & identifier, const String & current_database)
|
2018-08-22 06:42:37 +00:00
|
|
|
{
|
2018-10-30 16:31:21 +00:00
|
|
|
database = current_database;
|
|
|
|
table = identifier.name;
|
|
|
|
alias = identifier.tryGetAlias();
|
|
|
|
|
2018-08-22 06:42:37 +00:00
|
|
|
if (!identifier.children.empty())
|
|
|
|
{
|
|
|
|
if (identifier.children.size() != 2)
|
2018-10-30 16:31:21 +00:00
|
|
|
throw Exception("Logical error: number of components in table expression not equal to two", ErrorCodes::LOGICAL_ERROR);
|
2018-08-22 06:42:37 +00:00
|
|
|
|
2019-01-14 18:15:04 +00:00
|
|
|
getIdentifierName(identifier.children[0], database);
|
|
|
|
getIdentifierName(identifier.children[1], table);
|
2018-08-22 06:42:37 +00:00
|
|
|
}
|
2018-10-30 16:31:21 +00:00
|
|
|
}
|
|
|
|
|
2019-01-14 18:15:04 +00:00
|
|
|
DatabaseAndTableWithAlias::DatabaseAndTableWithAlias(const ASTPtr & node, const String & current_database)
|
|
|
|
{
|
|
|
|
const auto * identifier = typeid_cast<const ASTIdentifier *>(node.get());
|
|
|
|
if (!identifier)
|
|
|
|
throw Exception("Logical error: identifier expected", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
*this = DatabaseAndTableWithAlias(*identifier, current_database);
|
|
|
|
}
|
|
|
|
|
2018-10-30 16:31:21 +00:00
|
|
|
DatabaseAndTableWithAlias::DatabaseAndTableWithAlias(const ASTTableExpression & table_expression, const String & current_database)
|
|
|
|
{
|
|
|
|
if (table_expression.database_and_table_name)
|
2019-01-14 18:15:04 +00:00
|
|
|
*this = DatabaseAndTableWithAlias(table_expression.database_and_table_name, current_database);
|
2018-10-30 16:31:21 +00:00
|
|
|
else if (table_expression.table_function)
|
|
|
|
alias = table_expression.table_function->tryGetAlias();
|
|
|
|
else if (table_expression.subquery)
|
|
|
|
alias = table_expression.subquery->tryGetAlias();
|
|
|
|
else
|
|
|
|
throw Exception("Logical error: no known elements in ASTTableExpression", ErrorCodes::LOGICAL_ERROR);
|
2018-08-22 06:42:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
String DatabaseAndTableWithAlias::getQualifiedNamePrefix() const
|
|
|
|
{
|
2018-10-01 14:18:47 +00:00
|
|
|
if (alias.empty() && table.empty())
|
|
|
|
return "";
|
|
|
|
|
2018-08-22 06:42:37 +00:00
|
|
|
return (!alias.empty() ? alias : (database + '.' + table)) + '.';
|
|
|
|
}
|
|
|
|
|
|
|
|
void DatabaseAndTableWithAlias::makeQualifiedName(const ASTPtr & ast) const
|
|
|
|
{
|
|
|
|
if (auto identifier = typeid_cast<ASTIdentifier *>(ast.get()))
|
|
|
|
{
|
|
|
|
String prefix = getQualifiedNamePrefix();
|
|
|
|
identifier->name.insert(identifier->name.begin(), prefix.begin(), prefix.end());
|
|
|
|
|
|
|
|
Names qualifiers;
|
|
|
|
if (!alias.empty())
|
|
|
|
qualifiers.push_back(alias);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qualifiers.push_back(database);
|
|
|
|
qualifiers.push_back(table);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto & qualifier : qualifiers)
|
|
|
|
identifier->children.emplace_back(std::make_shared<ASTIdentifier>(qualifier));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 16:31:21 +00:00
|
|
|
std::vector<const ASTTableExpression *> getSelectTablesExpression(const ASTSelectQuery & select_query)
|
2018-10-26 15:13:02 +00:00
|
|
|
{
|
2018-10-30 16:31:21 +00:00
|
|
|
if (!select_query.tables)
|
2018-10-26 15:13:02 +00:00
|
|
|
return {};
|
|
|
|
|
|
|
|
std::vector<const ASTTableExpression *> tables_expression;
|
|
|
|
|
2018-10-30 16:31:21 +00:00
|
|
|
for (const auto & child : select_query.tables->children)
|
2018-10-26 15:13:02 +00:00
|
|
|
{
|
|
|
|
ASTTablesInSelectQueryElement * tables_element = static_cast<ASTTablesInSelectQueryElement *>(child.get());
|
|
|
|
|
|
|
|
if (tables_element->table_expression)
|
|
|
|
tables_expression.emplace_back(static_cast<const ASTTableExpression *>(tables_element->table_expression.get()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return tables_expression;
|
|
|
|
}
|
|
|
|
|
2018-10-29 19:04:28 +00:00
|
|
|
static const ASTTableExpression * getTableExpression(const ASTSelectQuery & select, size_t table_number)
|
|
|
|
{
|
|
|
|
if (!select.tables)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
ASTTablesInSelectQuery & tables_in_select_query = static_cast<ASTTablesInSelectQuery &>(*select.tables);
|
|
|
|
if (tables_in_select_query.children.size() <= table_number)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
ASTTablesInSelectQueryElement & tables_element =
|
|
|
|
static_cast<ASTTablesInSelectQueryElement &>(*tables_in_select_query.children[table_number]);
|
2018-10-30 16:31:21 +00:00
|
|
|
|
2018-10-29 19:04:28 +00:00
|
|
|
if (!tables_element.table_expression)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
return static_cast<const ASTTableExpression *>(tables_element.table_expression.get());
|
|
|
|
}
|
|
|
|
|
2018-10-30 16:31:21 +00:00
|
|
|
std::vector<DatabaseAndTableWithAlias> getDatabaseAndTables(const ASTSelectQuery & select_query, const String & current_database)
|
|
|
|
{
|
|
|
|
std::vector<const ASTTableExpression *> tables_expression = getSelectTablesExpression(select_query);
|
|
|
|
|
|
|
|
std::vector<DatabaseAndTableWithAlias> database_and_table_with_aliases;
|
|
|
|
database_and_table_with_aliases.reserve(tables_expression.size());
|
|
|
|
|
|
|
|
for (const auto & table_expression : tables_expression)
|
|
|
|
database_and_table_with_aliases.emplace_back(DatabaseAndTableWithAlias(*table_expression, current_database));
|
|
|
|
|
|
|
|
return database_and_table_with_aliases;
|
|
|
|
}
|
|
|
|
|
2018-11-01 11:32:44 +00:00
|
|
|
std::optional<DatabaseAndTableWithAlias> getDatabaseAndTable(const ASTSelectQuery & select, size_t table_number)
|
2018-10-29 19:04:28 +00:00
|
|
|
{
|
|
|
|
const ASTTableExpression * table_expression = getTableExpression(select, table_number);
|
|
|
|
if (!table_expression)
|
2018-10-30 16:31:21 +00:00
|
|
|
return {};
|
2018-10-29 19:04:28 +00:00
|
|
|
|
|
|
|
ASTPtr database_and_table_name = table_expression->database_and_table_name;
|
2019-01-14 18:15:04 +00:00
|
|
|
if (!database_and_table_name || !isIdentifier(database_and_table_name))
|
2018-10-30 16:31:21 +00:00
|
|
|
return {};
|
2018-10-29 19:04:28 +00:00
|
|
|
|
2019-01-14 18:15:04 +00:00
|
|
|
return DatabaseAndTableWithAlias(database_and_table_name);
|
2018-10-29 19:04:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ASTPtr getTableFunctionOrSubquery(const ASTSelectQuery & select, size_t table_number)
|
|
|
|
{
|
|
|
|
const ASTTableExpression * table_expression = getTableExpression(select, table_number);
|
|
|
|
if (table_expression)
|
|
|
|
{
|
|
|
|
#if 1 /// TODO: It hides some logical error in InterpreterSelectQuery & distributed tables
|
|
|
|
if (table_expression->database_and_table_name)
|
|
|
|
{
|
|
|
|
if (table_expression->database_and_table_name->children.empty())
|
|
|
|
return table_expression->database_and_table_name;
|
|
|
|
|
|
|
|
if (table_expression->database_and_table_name->children.size() == 2)
|
|
|
|
return table_expression->database_and_table_name->children[1];
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (table_expression->table_function)
|
|
|
|
return table_expression->table_function;
|
|
|
|
|
|
|
|
if (table_expression->subquery)
|
|
|
|
return static_cast<const ASTSubquery *>(table_expression->subquery.get())->children[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-08-24 03:32:20 +00:00
|
|
|
}
|