Avoid uninitialized-variable warnings from older compilers.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 71540dcdcb2239d9398c586615761d5ea424aaf0
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2025-10-09T14:33:55Z
Avoid uninitialized-variable warnings from older compilers.

Some of the buildfarm is still unhappy with WinGetFuncArgInPartition
even after 2273fa32b.  While it seems to be just very old compilers,
we can suppress the warnings and arguably make the code more readable
by not initializing these variables till closer to where they are
used.  While at it, make a couple of cosmetic comment improvements.

Files

PathChange+/−
src/backend/executor/nodeWindowAgg.c modified +16 −18