Skip to content

Commit

Permalink
Fix warning message in build. (#1075)
Browse files Browse the repository at this point in the history
This fixes a simple warning message when building.

This is also to test the CI hooks and DockerHub integrations
for the PG14 branch.
  • Loading branch information
jrgemignani authored Jul 21, 2023
1 parent f627679 commit 03cc69c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/parser/cypher_analyze.c
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ static void convert_cypher_to_subquery(RangeTblEntry *rte, ParseState *pstate)
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("too many extra_nodes passed from parser")));

list_delete_ptr(stmt, temp);
stmt = list_delete_ptr(stmt, temp);
}

cancel_errpos_ecb(&ecb_state);
Expand Down

0 comments on commit 03cc69c

Please sign in to comment.