Skip to content
Draft
Prev Previous commit
Next Next commit
Remove additional space
  • Loading branch information
nafraf committed Feb 22, 2023
commit c902f91cc5604141d738951a00caad7f228a9338
2 changes: 1 addition & 1 deletion src/arithmetic/arithmetic_expression_construct.c
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ static AR_ExpNode *_AR_ExpNodeFromComprehensionFunction
if(predicate_node) {
AST_ConvertFilters(&ctx->ft, predicate_node);
// in case of list comprehension, validate that aggregation function is not used in predicate
if( func_name == "LIST_COMPREHENSION" && !FilterTree_Valid(ctx->ft, CYPHER_AST_LIST_COMPREHENSION)) {
if(func_name == "LIST_COMPREHENSION" && !FilterTree_Valid(ctx->ft, CYPHER_AST_LIST_COMPREHENSION)) {
rm_free(ctx);
return AR_EXP_NewConstOperandNode(SI_NullVal());
}
Expand Down