Обсуждение: pgsql: Teach compiler that ereport(>=ERROR) does not return

Поиск
Список
Период
Сортировка

pgsql: Teach compiler that ereport(>=ERROR) does not return

От
Peter Eisentraut
Дата:
Teach compiler that ereport(>=ERROR) does not return

When elevel >= ERROR, we add an abort() call to the ereport() macro to
give the compiler a hint that the ereport() expansion will not return,
but the abort() isn't actually reached because the longjmp happens in
errfinish().

Because the effect of ereport() varies with the elevel, we cannot use
standard compiler attributes such as noreturn for this.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/71450d7fd6c7cf7b3e38ac56e363bff6a681973c

Modified Files
--------------
src/include/utils/elog.h |    7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)