Remove unused arguments from pg_replication_origin_xact_reset function.
authorFujii Masao <fujii@postgresql.org>
Mon, 1 Aug 2016 17:43:17 +0000 (02:43 +0900)
committerFujii Masao <fujii@postgresql.org>
Mon, 1 Aug 2016 17:43:17 +0000 (02:43 +0900)
commitdd5eb805d5e5384963f09c9986845a544ef41810
treef2e99de304dd80528e8b6c88782cc4ccc1a3c66f
parent878bd9accb553f6eee32af8acdb7ee3e54a74e23
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.
src/include/catalog/catversion.h
src/include/catalog/pg_proc.h