mirror of
https://github.com/postgres/postgres.git
synced 2026-04-23 23:28:01 -04:00
Fix accidentally casting away const
Recently introduced in commit 8c2b30487c.
This commit is contained in:
parent
5f39698c90
commit
a41bc38439
1 changed files with 1 additions and 1 deletions
|
|
@ -2289,7 +2289,7 @@ constructSetOpTargetlist(ParseState *pstate, SetOperationStmt *op,
|
|||
errmsg("each %s query must have the same number of columns",
|
||||
context),
|
||||
parser_errposition(pstate,
|
||||
exprLocation((Node *) rtargetlist))));
|
||||
exprLocation((const Node *) rtargetlist))));
|
||||
|
||||
if (targetlist)
|
||||
*targetlist = NIL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue