[MASSMAIL]"backend process" confused with "server process"

Поиск
Список
Период
Сортировка
От jian he
Тема [MASSMAIL]"backend process" confused with "server process"
Дата
Msg-id CACJufxEGKJXns06_usCizWEoP8fGg7KmOZYopBpq40wiO_txQQ@mail.gmail.com
обсуждение исходный текст
Ответы Re: "backend process" confused with "server process"
Список pgsql-hackers
hi.

pg_log_backend_memory_contexts
we have
`
if (proc == NULL)
{
/*
* This is just a warning so a loop-through-resultset will not abort
* if one backend terminated on its own during the run.
*/
ereport(WARNING,
(errmsg("PID %d is not a PostgreSQL server process", pid)));
PG_RETURN_BOOL(false);
}
`


pg_signal_backend
`
if (proc == NULL)
{
/*
* This is just a warning so a loop-through-resultset will not abort
* if one backend terminated on its own during the run.
*/
ereport(WARNING,
(errmsg("PID %d is not a PostgreSQL backend process", pid)));

return SIGNAL_BACKEND_ERROR;
}
`

"is not a PostgreSQL server process" is the same thing as "not a
PostgreSQL backend process"?
should we unify it?



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

Предыдущее
От: Amit Kapila
Дата:
Сообщение: Re: promotion related handling in pg_sync_replication_slots()
Следующее
От: Daniel Gustafsson
Дата:
Сообщение: Re: Cutting support for OpenSSL 1.0.1 and 1.0.2 in 17~?