pgsql: Remove unused arguments from pg_replication_origin_xact_reset fu

Поиск
Список
Период
Сортировка
От Fujii Masao
Тема pgsql: Remove unused arguments from pg_replication_origin_xact_reset fu
Дата
Msg-id E1bUHGg-0004ZH-I8@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Remove unused arguments from pg_replication_origin_xact_reset function.

The document specifies that pg_replication_origin_xact_reset function
doesn't have any argument variables. But previously it was actually
defined so as to have two argument variables, though they were not
used at all. That is, the pg_proc entry for that function was incorrect.
This patch fixes the pg_proc entry and removes those two arguments
from the function definition.

No back-patch because this change needs a catalog version bump
although the issue exists in 9.5 as well. Instead, a note about those
unused argument variables will be added to 9.5 document later.

Catalog version bumped due to the change of pg_proc.

Branch
------
master

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

Modified Files
--------------
src/include/catalog/catversion.h | 2 +-
src/include/catalog/pg_proc.h    | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: pgsql: pg_rewind docs: clarify handling of remote servers
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Don't CHECK_FOR_INTERRUPTS between WaitLatch and ResetLatch.