Re: unable to fail over to warm standby server

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Re: unable to fail over to warm standby server
Дата
Msg-id 4B6345EF.1080402@enterprisedb.com
обсуждение исходный текст
Ответ на Re: unable to fail over to warm standby server  (Mason Hale <mason@onespot.com>)
Ответы Re: unable to fail over to warm standby server  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-bugs
Actually, I think there's a tiny harmless bug in the server too. When it
prints the error message:

2010-01-18 21:08:31 UTC ()FATAL:  could not restore file
"0000000200003C82000000D8" from archive: return code 65280

That return code is not the return code that came from the
restore_command. Ie if you do exit(200) in the command, you won't see
"return code 200", but you see the return value from system(). system()
doesn't return the exit code directly, but an encoded integer that
includes the exit code. You're supposed to call WEXITSTATUS() on it to
get the real return code.

That only affects the error message and is harmless otherwise, but I
thought I'd mention it. I'll fix it, unless someone wants to argue that
its more useful to print the raw return value of system(), because it
might contain more information like which signal killed the process,
that you could extract from the cryptic error code using e.g WTERMSIG()
macro.

--
  Heikki Linnakangas
  EnterpriseDB   http://www.enterprisedb.com

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #5302: WIN1252 encoding causes server memory leak
Следующее
От: Robert Haas
Дата:
Сообщение: Re: unable to fail over to warm standby server