pgsql: Can't completely get rid of #ifndef FRONTEND in palloc.h :-(

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Can't completely get rid of #ifndef FRONTEND in palloc.h :-(
Дата
Msg-id E1WeaJI-0006gD-DF@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Can't completely get rid of #ifndef FRONTEND in palloc.h :-(

pg_controldata includes postgres.h not postgres_fe.h, so utils/palloc.h
must be able to compile in a "#define FRONTEND" context.  It appears that
Solaris Studio is smart enough to persuade us to define PG_USE_INLINE,
but not smart enough to not make a copy of unreferenced static functions;
which leads to an unsatisfied reference to CurrentMemoryContext.  So we
need an #ifndef FRONTEND around that declaration.  Per buildfarm.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/a9baeb361d635963a19a0268a7d60636c813d2ee

Modified Files
--------------
src/include/utils/palloc.h |    7 +++++++
1 file changed, 7 insertions(+)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Can't completely get rid of #ifndef FRONTEND in palloc.h :-(
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: pgsql: Can't completely get rid of #ifndef FRONTEND in palloc.h :-(