@@ -830,10 +830,10 @@ typedef bool (*LogicalDecodeFilterPrepareCB) (struct LogicalDecodingContext *ctx
830830 check if the plugin has already received this <command>PREPARE</command>
831831 in which case it can either error out or skip the remaining changes of
832832 the transaction.
833- <programlisting>
834- typedef void (*LogicalDecodeBeginPrepareCB) (struct LogicalDecodingContext *ctx,
835- ReorderBufferTXN *txn);
836- </programlisting>
833+ <programlisting>
834+ typedef void (*LogicalDecodeBeginPrepareCB) (struct LogicalDecodingContext *ctx,
835+ ReorderBufferTXN *txn);
836+ </programlisting>
837837 </para>
838838 </sect3>
839839
@@ -847,11 +847,11 @@ typedef bool (*LogicalDecodeFilterPrepareCB) (struct LogicalDecodingContext *ctx
847847 rows will have been called before this, if there have been any modified
848848 rows. The <parameter>gid</parameter> field, which is part of the
849849 <parameter>txn</parameter> parameter, can be used in this callback.
850- <programlisting>
851- typedef void (*LogicalDecodePrepareCB) (struct LogicalDecodingContext *ctx,
852- ReorderBufferTXN *txn,
853- XLogRecPtr prepare_lsn);
854- </programlisting>
850+ <programlisting>
851+ typedef void (*LogicalDecodePrepareCB) (struct LogicalDecodingContext *ctx,
852+ ReorderBufferTXN *txn,
853+ XLogRecPtr prepare_lsn);
854+ </programlisting>
855855 </para>
856856 </sect3>
857857
@@ -863,11 +863,11 @@ typedef bool (*LogicalDecodeFilterPrepareCB) (struct LogicalDecodingContext *ctx
863863 whenever a transaction <command>COMMIT PREPARED</command> has been decoded.
864864 The <parameter>gid</parameter> field, which is part of the
865865 <parameter>txn</parameter> parameter, can be used in this callback.
866- <programlisting>
867- typedef void (*LogicalDecodeCommitPreparedCB) (struct LogicalDecodingContext *ctx,
868- ReorderBufferTXN *txn,
869- XLogRecPtr commit_lsn);
870- </programlisting>
866+ <programlisting>
867+ typedef void (*LogicalDecodeCommitPreparedCB) (struct LogicalDecodingContext *ctx,
868+ ReorderBufferTXN *txn,
869+ XLogRecPtr commit_lsn);
870+ </programlisting>
871871 </para>
872872 </sect3>
873873
@@ -885,12 +885,12 @@ typedef bool (*LogicalDecodeFilterPrepareCB) (struct LogicalDecodingContext *ctx
885885 it can apply the rollback, otherwise, it can skip the rollback operation. The
886886 <parameter>gid</parameter> alone is not sufficient because the downstream
887887 node can have a prepared transaction with same identifier.
888- <programlisting>
889- typedef void (*LogicalDecodeRollbackPreparedCB) (struct LogicalDecodingContext *ctx,
890- ReorderBufferTXN *txn,
891- XLogRecPtr prepare_end_lsn,
892- TimestampTz prepare_time);
893- </programlisting>
888+ <programlisting>
889+ typedef void (*LogicalDecodeRollbackPreparedCB) (struct LogicalDecodingContext *ctx,
890+ ReorderBufferTXN *txn,
891+ XLogRecPtr prepare_end_lsn,
892+ TimestampTz prepare_time);
893+ </programlisting>
894894 </para>
895895 </sect3>
896896
0 commit comments