pgsql: Use ereport rather than elog in WinCheckAndInitializeNullTreatme - Mailing list pgsql-committers

From Tatsuo Ishii
Subject pgsql: Use ereport rather than elog in WinCheckAndInitializeNullTreatme
Date
Msg-id E1v8c82-001dih-0t@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Use ereport rather than elog in WinCheckAndInitializeNullTreatment.

Previously WinCheckAndInitializeNullTreatment() used elog() to emit an
error message. ereport() should be used instead because it's a
user-facing error. Also use existing get_func_name() to get a
function's name, rather than own implementation.

Moreover add an assertion to validate winobj parameter, just like
other window function API.

Reported-by: Tom Lane <tgl@sss.pgh.pa.us>
Author: Tatsuo Ishii <ishii@postgresql.org>
Reviewed-by: Chao Li <lic@highgo.com>
Discussion: https://postgr.es/m/2952409.1760023154%40sss.pgh.pa.us

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/5f3808646f67260d5dc0d95f2602886da5cf5c52

Modified Files
--------------
src/backend/executor/nodeWindowAgg.c | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)


pgsql-committers by date:

Previous
From: Richard Guo
Date:
Subject: pgsql: Rename apply_at to apply_agg_at for clarity
Next
From: Melanie Plageman
Date:
Subject: pgsql: Bump XLOG_PAGE_MAGIC after xl_heap_prune change