pgsql: Fix Coverity issue reported in commit 2273fa32bce. - Mailing list pgsql-committers

From Tatsuo Ishii
Subject pgsql: Fix Coverity issue reported in commit 2273fa32bce.
Date
Msg-id E1vAHNn-002NSS-17@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix Coverity issue reported in commit 2273fa32bce.

Coverity complains that the return value from gettuple_eval_partition
(stored in variable "datum") in a do..while loop in
WinGetFuncArgInPartition is overwritten when exiting the while
loop. This commit tries to fix the issue by changing the
gettuple_eval_partition call to:

(void) gettuple_eval_partition()

explicitly stating that we discard the return value. We are just
interested in whether we are inside or outside of partition, NULL or
NOT NULL here.

Also enhance some comments for easier code reading.

Reported-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/aPCOabSE4VfJLaky%40paquier.xyz

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/dd766a441d69d16d1c8ab0d3a41a10649702d202

Modified Files
--------------
src/backend/executor/nodeWindowAgg.c | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)


pgsql-committers by date:

Previous
From: Jeff Davis
Date:
Subject: pgsql: Add pg_database_locale() to retrieve database default locale.