52.40. pg_publication
pg_publication
The catalog pg_publication contains all publications created in the database. For more on publications see Publication.
Column Type Description |
|---|
oid Row identifier |
pubname Name of the publication |
pubowner Owner of the publication |
puballtables If true, this publication automatically includes all tables in the database, including any that will be created in the future. |
pubinsert If true, INSERT operations are replicated for tables in the publication. |
pubupdate If true, UPDATE operations are replicated for tables in the publication. |
pubdelete If true, DELETE operations are replicated for tables in the publication. |
pubtruncate If true, TRUNCATE operations are replicated for tables in the publication. |
pubviaroot If true, operations on a leaf partition are replicated using the identity and schema of its topmost partitioned ancestor mentioned in the publication instead of its own. |
pubgencols Controls how to handle generated column replication when there is no publication column list: |
: pg_publication Columns