49.40. pg_publication
Каталог pg_publication
содержит все публикации, созданные в базе данных. Подробнее о публикациях можно узнать в Разделе 30.1.
Таблица 49.40. Столбцы pg_publication
Имя | Тип | Ссылки | Описание |
---|---|---|---|
oid | oid | Идентификатор строки (скрытый атрибут; должен выбираться явно) | |
pubname | name | Имя публикации | |
pubowner | oid |
| Владелец публикации |
puballtables | bool | Если true, эта публикация автоматически включает все таблицы в базе данных, в том числе и те, что будут созданы в будущем. | |
pubinsert | bool | Если true, операции INSERT реплицируются для таблиц в репликации. | |
pubupdate | bool | Если true, операции UPDATE реплицируются для таблиц в публикации. | |
pubdelete | bool | Если true, операции DELETE реплицируются для таблиц в публикации. |
49.40. pg_publication
The catalog pg_publication
contains all publications created in the database. For more on publications see Section 30.1.
Table 49.40. pg_publication
Columns
Name | Type | References | Description |
---|---|---|---|
oid | oid | Row identifier (hidden attribute; must be explicitly selected) | |
pubname | name | Name of the publication | |
pubowner | oid |
| Owner of the publication |
puballtables | bool | If true, this publication automatically includes all tables in the database, including any that will be created in the future. | |
pubinsert | bool | If true, INSERT operations are replicated for tables in the publication. | |
pubupdate | bool | If true, UPDATE operations are replicated for tables in the publication. | |
pubdelete | bool | If true, DELETE operations are replicated for tables in the publication. |