mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
Suppress uninitialized-variable warning from a61b1f748
.
Some compilers complain about sub_rteperminfos not being initialized, evidently because they don't detect that it is only used and set if isGeneralSelect is true. Make it follow the long-established pattern for its sibling variable sub_rtable. Per reports from Pavel Stehule and the buildfarm. Discussion: https://postgr.es/m/CAFj8pRDOvGOi-n616kM0Cc7qSbg_nGoS=-haB+D785sUXADqSg@mail.gmail.com
This commit is contained in:
parent
197f98a848
commit
adb5c32eb5
@ -615,6 +615,7 @@ transformInsertStmt(ParseState *pstate, InsertStmt *stmt)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
sub_rtable = NIL; /* not used, but keep compiler quiet */
|
sub_rtable = NIL; /* not used, but keep compiler quiet */
|
||||||
|
sub_rteperminfos = NIL;
|
||||||
sub_namespace = NIL;
|
sub_namespace = NIL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user