Skip to content

Commit

Permalink
fix warning on pg 13
Browse files Browse the repository at this point in the history
  • Loading branch information
okbob committed Feb 6, 2025
1 parent ff1cccf commit a0fac50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/check_expr.c
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ check_pure_expr(PLpgSQL_checkstate *cstate, Query *query, char *query_str)
"there is a possibility of unwanted behave",
"Maybe you forgot to use a semicolon.",
PLPGSQL_CHECK_WARNING_EXTRA,
exprLocation(query->targetList), query_str, NULL);
exprLocation((Node *) query->targetList), query_str, NULL);
}
}

Expand Down

0 comments on commit a0fac50

Please sign in to comment.