pgsql: Fix Coverity issue reported in commit 2273fa32bce.

Поиск
Список
Период
Сортировка
От Tatsuo Ishii
Тема pgsql: Fix Coverity issue reported in commit 2273fa32bce.
Дата
Msg-id E1vAHNn-002NSS-17@gemulon.postgresql.org
обсуждение исходный текст
Список 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 по дате отправления: