In 9.5, two arguments were introduced into pg_replication_origin_xact_reset()
by mistake while they are actually not used at all. We cannot fix this issue
for 9.5 anymore because it needs a catalog version bump. Instead, we add
a note about those unused arguments into the document.
Reviewed-By: Andres Freund
pg_replication_origin_xact_reset
- pg_replication_origin_xact_reset()
+
pg_replication_origin_xact_reset(origin_lsn pg_lsn, origin_timestamp timestamptz)
void
Cancel the effects of
pg_replication_origin_xact_setup().
+ Note that two arguments were introduced by mistake>
+ during the
PostgreSQL> 9.5 development cycle while
+ pg_replication_origin_xact_reset() actually
+ doesn't use them at all. Therefore, any dummy values except
+ NULL> can be safely specified as the arguments.
+ This mistake will be fixed in a future release.