pgsql: Move the extern declaration for ExceptionalCondition into c.h.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Move the extern declaration for ExceptionalCondition into c.h.
Дата
Msg-id E1em7eU-0005h4-6r@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Move the extern declaration for ExceptionalCondition into c.h.

This is the logical conclusion of our decision to support Assert()
in both frontend and backend code: it should be possible to use that
after including just c.h.  But as things were arranged before, if
you wanted to use Assert() in code that might be compiled for either
environment, you had to include postgres.h for the backend case.
Let's simplify that.

Per buildfarm, some of whose members started throwing warnings after
commit 0c62356cc added an Assert in src/port/snprintf.c.

It's possible that some other src/port files that use the stanza

#ifndef FRONTEND
#include "postgres.h"
#else
#include "postgres_fe.h"
#endif

could now be simplified to just say '#include "c.h"'.  I have not
tested for that, though, and it'd be unlikely to apply for more
than a small number of them.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/03c5a00ea3867f5736da6cedce73b1eea88a98af

Modified Files
--------------
src/include/c.h        | 19 ++++++++++++++++---
src/include/postgres.h | 16 ----------------
2 files changed, 16 insertions(+), 19 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Revert "Stabilize output of new regression test case".
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Cast to void in StaticAssertExpr, not its callers.