pgsql: Convert nullingrels match checks from Asserts to test-and-elog.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Convert nullingrels match checks from Asserts to test-and-elog.
Дата
Msg-id E1pzIr2-000Luw-T1@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Convert nullingrels match checks from Asserts to test-and-elog.

It seems like the code that these checks are backstopping may have
a few bugs left in it.  Use a test-and-elog so that the tests are
performed even in non-assert builds, and so that we get something
more informative than "server closed the connection" on failure.

Committed separately with the idea that eventually we'll revert
this.  It might be awhile though.

Discussion: https://postgr.es/m/3014965.1684293045@sss.pgh.pa.us

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/867be9c0738bef591544d39985f886b7d8e99bf0

Modified Files
--------------
src/backend/optimizer/plan/setrefs.c | 34 +++++++++++++++++++++-------------
1 file changed, 21 insertions(+), 13 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tomas Vondra
Дата:
Сообщение: pgsql: Advance input pointer when LZ4 compressing data
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Track tlist_vinfo.varnullingrels even in non-Assert builds.