ClickHouse/dbms/src/Interpreters/InterpreterDescribeQuery.cpp

131 lines
4.0 KiB
C++
Raw Normal View History

#include <Storages/IStorage.h>
#include <DataStreams/OneBlockInputStream.h>
#include <DataStreams/BlockIO.h>
#include <DataTypes/DataTypeString.h>
#include <Parsers/queryToString.h>
2017-07-13 20:58:19 +00:00
#include <Common/typeid_cast.h>
#include <TableFunctions/ITableFunction.h>
#include <TableFunctions/TableFunctionFactory.h>
2018-02-28 04:55:43 +00:00
#include <Interpreters/InterpreterSelectWithUnionQuery.h>
#include <Interpreters/Context.h>
#include <Interpreters/InterpreterDescribeQuery.h>
#include <Parsers/ASTIdentifier.h>
2018-02-28 04:55:43 +00:00
#include <Parsers/ASTFunction.h>
#include <Parsers/ASTTablesInSelectQuery.h>
2018-02-28 04:55:43 +00:00
#include <Parsers/TablePropertiesQueriesASTs.h>
2016-12-12 07:24:56 +00:00
namespace DB
{
BlockIO InterpreterDescribeQuery::execute()
{
BlockIO res;
res.in = executeImpl();
return res;
2016-12-12 07:24:56 +00:00
}
Block InterpreterDescribeQuery::getSampleBlock()
{
Block block;
2016-12-12 07:24:56 +00:00
ColumnWithTypeAndName col;
col.name = "name";
col.type = std::make_shared<DataTypeString>();
col.column = col.type->createColumn();
block.insert(col);
2016-12-12 07:24:56 +00:00
col.name = "type";
block.insert(col);
2016-12-12 07:24:56 +00:00
col.name = "default_type";
block.insert(col);
2016-12-12 07:24:56 +00:00
col.name = "default_expression";
block.insert(col);
2016-12-12 07:24:56 +00:00
return block;
2016-12-12 07:24:56 +00:00
}
BlockInputStreamPtr InterpreterDescribeQuery::executeImpl()
{
const ASTDescribeQuery & ast = typeid_cast<const ASTDescribeQuery &>(*query_ptr);
NamesAndTypesList columns;
ColumnDefaults column_defaults;
StoragePtr table;
auto table_expression = typeid_cast<const ASTTableExpression *>(ast.table_expression.get());
if (table_expression->subquery)
2018-02-28 04:55:43 +00:00
{
columns = InterpreterSelectWithUnionQuery::getSampleBlock(table_expression->subquery->children[0], context).getNamesAndTypesList();
}
else
{
if (table_expression->table_function)
{
auto table_function = typeid_cast<const ASTFunction *>(table_expression->table_function.get());
/// Get the table function
TableFunctionPtr table_function_ptr = TableFunctionFactory::instance().get(table_function->name, context);
/// Run it and remember the result
table = table_function_ptr->execute(table_expression->table_function, context);
}
else
{
String database_name;
String table_name;
auto identifier = table_expression->database_and_table_name;
if (identifier->children.size() > 2)
throw Exception("Logical error: more than two components in table expression", ErrorCodes::LOGICAL_ERROR);
if (identifier->children.size() > 1)
{
auto database_ptr = identifier->children[0];
auto table_ptr = identifier->children[1];
if (database_ptr)
database_name = typeid_cast<ASTIdentifier &>(*database_ptr).name;
if (table_ptr)
table_name = typeid_cast<ASTIdentifier &>(*table_ptr).name;
}
else
table_name = typeid_cast<ASTIdentifier &>(*identifier).name;
table = context.getTable(database_name, table_name);
}
auto table_lock = table->lockStructure(false, __PRETTY_FUNCTION__);
columns = table->columns.getAll();
column_defaults = table->columns.defaults;
}
Block sample_block = getSampleBlock();
MutableColumns res_columns = sample_block.cloneEmptyColumns();
for (const auto & column : columns)
{
res_columns[0]->insert(column.name);
res_columns[1]->insert(column.type->getName());
const auto it = column_defaults.find(column.name);
if (it == std::end(column_defaults))
{
res_columns[2]->insertDefault();
res_columns[3]->insertDefault();
}
else
{
res_columns[2]->insert(toString(it->second.kind));
res_columns[3]->insert(queryToString(it->second.expression));
}
}
return std::make_shared<OneBlockInputStream>(sample_block.cloneWithColumns(std::move(res_columns)));
2016-12-12 07:24:56 +00:00
}
}