#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace DB { namespace ErrorCodes { extern const int SYNTAX_ERROR; extern const int THERE_IS_NO_QUERY; extern const int BAD_ARGUMENTS; } BlockIO InterpreterShowCreateQuery::execute() { BlockIO res; res.pipeline = executeImpl(); return res; } Block InterpreterShowCreateQuery::getSampleBlock() { return Block{{ ColumnString::create(), std::make_shared(), "statement"}}; } QueryPipeline InterpreterShowCreateQuery::executeImpl() { ASTPtr create_query; ASTQueryWithTableAndOutput * show_query; if ((show_query = query_ptr->as()) || (show_query = query_ptr->as()) || (show_query = query_ptr->as())) { auto resolve_table_type = show_query->temporary ? Context::ResolveExternal : Context::ResolveOrdinary; auto table_id = getContext()->resolveStorageID(*show_query, resolve_table_type); bool is_dictionary = static_cast(query_ptr->as()); if (is_dictionary) getContext()->checkAccess(AccessType::SHOW_DICTIONARIES, table_id); else getContext()->checkAccess(AccessType::SHOW_COLUMNS, table_id); create_query = DatabaseCatalog::instance().getDatabase(table_id.database_name)->getCreateTableQuery(table_id.table_name, getContext()); auto & ast_create_query = create_query->as(); if (query_ptr->as()) { if (!ast_create_query.isView()) throw Exception(ErrorCodes::BAD_ARGUMENTS, "{}.{} is not a VIEW", backQuote(ast_create_query.getDatabase()), backQuote(ast_create_query.getTable())); } else if (is_dictionary) { if (!ast_create_query.is_dictionary) throw Exception(ErrorCodes::BAD_ARGUMENTS, "{}.{} is not a DICTIONARY", backQuote(ast_create_query.getDatabase()), backQuote(ast_create_query.getTable())); } } else if ((show_query = query_ptr->as())) { if (show_query->temporary) throw Exception(ErrorCodes::SYNTAX_ERROR, "Temporary databases are not possible."); show_query->setDatabase(getContext()->resolveDatabase(show_query->getDatabase())); getContext()->checkAccess(AccessType::SHOW_DATABASES, show_query->getDatabase()); create_query = DatabaseCatalog::instance().getDatabase(show_query->getDatabase())->getCreateDatabaseQuery(); } if (!create_query) throw Exception(ErrorCodes::THERE_IS_NO_QUERY, "Unable to show the create query of {}. Maybe it was created by the system.", show_query->getTable()); if (!getContext()->getSettingsRef().show_table_uuid_in_table_create_query_if_not_nil) { auto & create = create_query->as(); create.uuid = UUIDHelpers::Nil; create.to_inner_uuid = UUIDHelpers::Nil; } MutableColumnPtr column = ColumnString::create(); column->insert(format({.ctx = getContext(), .query = *create_query, .one_line = false})); return QueryPipeline(std::make_shared(Block{{ std::move(column), std::make_shared(), "statement"}})); } void registerInterpreterShowCreateQuery(InterpreterFactory & factory) { auto create_fn = [] (const InterpreterFactory::Arguments & args) { return std::make_unique(args.query, args.context); }; factory.registerInterpreter("InterpreterShowCreateQuery", create_fn); } }