PGObject-Util-LogRep-TestDecoding
view release on metacpan or search on metacpan
lib/PGObject/Util/LogRep/TestDecoding.pm view on Meta::CPAN
created but can be set in the constructor. If you need to change them. create
a new object instead.
=head2 schema Maybe[ArrayRef[Str]]
Undef or an arrayref of schalars. If it is set, then matches returns true if
the message matches any table in any schema mentioned.
=cut
has schema => (is => 'ro', isa => Maybe[ArrayRef[Str]]);
=head2 txn_status Bool
Whether to report transactoin status.
=cut
has txn_status => (is => 'ro', isa => Bool);
=head2 tables Maybe[ArrayRef[Str]]
A list of fully qualified tablenames to match against. Note that this filter
operates along with the schema filter and if either matches, the match is
met.
=cut
has tables => (is => 'ro', isa => Maybe[ArrayRef[Str]]);
=head2 current_txn (calculated)
Logical replication sends messages out for transactions in commit order.
Assuming the transaction numbers have been requested, this will produce the
transaction number of the most recent BEGIN statement. Note that this
information is only available when certain options are passed so it may return
C<undef>.
=cut
( run in 1.031 second using v1.01-cache-2.11-cpan-5f2e87ce722 )