pgsql: Make logging_collector=on work with non-windows EXEC_BACKEND aga

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: Make logging_collector=on work with non-windows EXEC_BACKEND aga
Дата
Msg-id E1YBBBU-00022I-7I@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Make logging_collector=on work with non-windows EXEC_BACKEND again.

Commit b94ce6e80 reordered postmaster's startup sequence so that the
tempfile directory is only cleaned up after all the necessary state
for pg_ctl is collected.  Unfortunately the chosen location is after
the syslogger has been started; which normally is fine, except for
!WIN32 EXEC_BACKEND builds, which pass information to children via
files in the temp directory.

Move the call to RemovePgTempFiles() to just before the syslogger has
started. That's the first child we fork.

Luckily EXEC_BACKEND is pretty much only used by endusers on windows,
which has a separate method to pass information to children. That
means the real world impact of this bug is very small.

Discussion: 20150113182344.GF12272@alap3.anarazel.de

Backpatch to 9.1, just as the previous commit was.

Branch
------
REL9_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/045c7d3ebd413c501904233664825df5c1d955d7

Modified Files
--------------
src/backend/postmaster/postmaster.c |   15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)


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

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: Remove some dead IsUnderPostmaster code from bootstrap.c.
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: Make logging_collector=on work with non-windows EXEC_BACKEND aga