./databases/postgresql-wal2json, Plugin to decode PostgreSQL WAL to JSON

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 2.5, Package name: postgresql14-wal2json-2.5, Maintainer: otis

wal2json is an output plugin for logical decoding. It means that the plugin
have access to tuples produced by INSERT and UPDATE. Also, UPDATE/DELETE old
row versions can be accessed depending on the configured replica identity.
Changes can be consumed using the streaming protocol (logical replication
slots) or by a special SQL API.

format version 1 produces a JSON object per transaction. All of the new/old
tuples are available in the JSON object. Also, there are options to include
properties such as transaction timestamp, schema-qualified, data types, and
transaction ids.

format version 2 produces a JSON object per tuple. Optional JSON object for
beginning and end of transaction. Also, there are a variety of options to
include properties.

WWW: https://github.com/eulerto/wal2json


Required to run:
[databases/postgresql14-client] [databases/postgresql14-server]

Master sites:

Filesize: 88.906 KB

Version history: (Expand)


CVS history: (Expand)


   2022-12-11 10:27:44 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
postgresql-wal2json: update to 2.5.

2.5

Notable changes in this release include:

    fix bug that prevents a default value to be printed in v1 after a TRUNCATE
    document that write-in-chunks parameter is only used for v1
    add include-type-oids support in v2
    array type does not print the correct type name
    add lag tracking support (lag time in pg_stat_replication)
    add support to PostgreSQL 15

2.4

Notable changes in this release include:

    Don't rely on index attribute names for primary key
    Filter was not applied for TRUNCATE
    Avoid duplicate double quotes for type names
    Refactor filter code to be used by both wal2json formats
    documentation improvements
   2021-10-26 12:10:08 by Nia Alarie | Files touched by this commit (417)
Log message:
databases: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

The following distfiles could not be fetched (some may be only fetched
conditionally):

./databases/cstore/distinfo D6.data.ros.gz
./databases/cstore/distinfo cstore0.2.tar.gz
./databases/cstore/distinfo data4.tar.gz
   2021-10-07 15:35:53 by Nia Alarie | Files touched by this commit (417)
Log message:
databases: Remove SHA1 distfile hashes
   2020-12-05 10:04:58 by Juraj Lutter | Files touched by this commit (4)
Log message:
databases: Add postgresql-wal2json 2.3

wal2json is an output plugin for logical decoding. It means that the plugin
have access to tuples produced by INSERT and UPDATE. Also, UPDATE/DELETE old
row versions can be accessed depending on the configured replica identity.
Changes can be consumed using the streaming protocol (logical replication
slots) or by a special SQL API.