pg_publication #目录pg_publication包含数据库中创建的所有发布。关于发布的更多信息见Section 31.1。
Table 51.40. pg_publication 列
| Name | 类型 | 引用 | 描述 |
|---|---|---|---|
oid |
oid |
行标识符(隐藏属性,必须显式选择) | |
pubname |
name |
发布名称 | |
pubowner |
oid |
|
发布的拥有者 |
puballtables |
bool |
如果为真,则该发布会自动包括数据库中的所有表,包括将来创建的表。 | |
pubinsert |
bool |
如果为真,则会为发布中的表复制INSERT操作。 |
|
pubupdate |
bool |
如果为真,则会为发布中的表复制UPDATE操作。 |
|
pubdelete |
bool |
如果为真,则会为发布中的表复制DELETE操作。 |