Skip to content

Commit

Permalink
Changing any type to scalar
Browse files Browse the repository at this point in the history
  • Loading branch information
Dtenwolde committed Feb 26, 2024
1 parent bde9097 commit 26cadf1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions duckpgq/src/duckpgq/functions/tablefunctions/match.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,7 @@ PGQMatchFunction::CreateCSRCTE(const shared_ptr<PropertyGraphTable> &edge_table,
outer_select_statement->node = std::move(outer_select_node);
auto csr_subquery = make_uniq<SubqueryExpression>();
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;
}

Expand Down

0 comments on commit 26cadf1

Please sign in to comment.