#pragma once #include #include #include #include #include #include namespace DB { /// If node is ASTIdentifier try to extract external_storage. class ExternalTablesMatcher { public: struct Data { const Context & context; Tables & external_tables; }; static constexpr const char * label = "ExternalTables"; static std::vector visit(ASTPtr & ast, Data & data) { if (auto * t = typeid_cast(ast.get())) return visit(*t, ast, data); return {}; } static bool needChildVisit(ASTPtr &, const ASTPtr &) { return true; } private: static std::vector visit(const ASTIdentifier & node, ASTPtr &, Data & data) { if (auto opt_name = IdentifierSemantic::getTableName(node)) if (StoragePtr external_storage = data.context.tryGetExternalTable(*opt_name)) data.external_tables[*opt_name] = external_storage; return {}; } }; /// Finds in the query the usage of external tables. Fills in external_tables. using ExternalTablesVisitor = InDepthNodeVisitor; }