PG_PUBLICATION
PG_PUBLICATION系统表存储当前数据库中创建的所有publication。
表 1 PG_PUBLICATION字段
名称 | 类型 | 描述 |
---|---|---|
pubname | name | publication的名称。 |
pubowner | oid | publication的拥有者。 |
puballtables | boolean | 如果为真,这个publication自动包括数据库中的所有表,包括未来将会创建的任何表。 |
pubinsert | boolean | 如果为真,为publication中的表复制INSERT操作。 |
pubupdate | boolean | 如果为真,为publication中的表复制UPDATE操作。 |
pubdelete | boolean | 如果为真,为publication中的表复制DELETE操作。 |
pubtruncate | boolean | 如果为真,则发布时指定publish选项包含truncate操作。 |
pubddl | bigint |
|