On this page
52.40. pg_publication
目录pg_publication
包含数据库中创建的所有出版物。有关出版物的更多信息,请参见Section 31.1。
表 52.40. pg_publication
列
Name | Type | References | Description |
---|---|---|---|
oid |
oid |
行标识符(隐藏属性;必须显式选择) | |
pubname |
name |
出版物名称 | |
pubowner |
oid |
pg_authid.oid |
出版物的所有者 |
puballtables |
bool |
如果为 true,则此发布将自动包括数据库中的所有表,包括将来将要创建的任何表。 | |
pubinsert |
bool |
如果为 true,则会为发布中的表复制INSERT 操作。 |
|
pubupdate |
bool |
如果为 true,则会为发布中的表复制UPDATE 操作。 |
|
pubdelete |
bool |
如果为 true,则会为发布中的表复制DELETE 操作。 |
|
pubtruncate |
bool |
如果为 true,则会为发布中的表复制TRUNCATE 操作。 |