From 26cadf12c8a3211f0e188af43e98cd1d61c931ad Mon Sep 17 00:00:00 2001 From: dtenwolde Date: Mon, 26 Feb 2024 12:29:37 +0100 Subject: [PATCH] Changing any type to scalar --- duckpgq/src/duckpgq/functions/tablefunctions/match.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/duckpgq/src/duckpgq/functions/tablefunctions/match.cpp b/duckpgq/src/duckpgq/functions/tablefunctions/match.cpp index a1bf0860..8b868c5e 100644 --- a/duckpgq/src/duckpgq/functions/tablefunctions/match.cpp +++ b/duckpgq/src/duckpgq/functions/tablefunctions/match.cpp @@ -357,8 +357,7 @@ PGQMatchFunction::CreateCSRCTE(const shared_ptr &edge_table, outer_select_statement->node = std::move(outer_select_node); auto csr_subquery = make_uniq(); csr_subquery->subquery = std::move(outer_select_statement); - csr_subquery->subquery_type = SubqueryType::ANY; - csr_subquery->comparison_type = ExpressionType::COMPARE_EQUAL; + csr_subquery->subquery_type = SubqueryType::SCALAR; return csr_subquery; }