From 58e0cd97da928c93252c9d454bbd98183d1c22f4 Mon Sep 17 00:00:00 2001 From: dtenwolde Date: Tue, 19 Mar 2024 16:38:00 +0100 Subject: [PATCH] Remove comment --- duckpgq/src/duckpgq/functions/tablefunctions/match.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/duckpgq/src/duckpgq/functions/tablefunctions/match.cpp b/duckpgq/src/duckpgq/functions/tablefunctions/match.cpp index a1c22696..854755a3 100644 --- a/duckpgq/src/duckpgq/functions/tablefunctions/match.cpp +++ b/duckpgq/src/duckpgq/functions/tablefunctions/match.cpp @@ -422,7 +422,7 @@ void PGQMatchFunction::EdgeTypeAny( union_node->right = std::move(dst_src_select_node); auto union_select = make_uniq(); union_select->node = std::move(union_node); - // (SELECT src, dst, * from edge_table UNION ALL SELECT dst, src, * from edge_table UNION ALL) + // (SELECT src, dst, * from edge_table UNION ALL SELECT dst, src, * from edge_table) auto union_subquery = make_uniq(std::move(union_select)); union_subquery->alias = edge_binding; if (from_clause) {