CREATE PUBLICATION
CREATE PUBLICATION — define a new publication
Synopsis
CREATE PUBLICATIONname[ FOR ALL TABLES | FORpublication_object[, ... ] ] [ WITH (publication_parameter[=value] [, ... ] ) ]wherepublication_objectis one of: TABLE [ ONLY ]table_name[ * ] [ (column_name[, ... ] ) ] [ WHERE (expression) ] [, ... ] TABLES IN SCHEMA {schema_name| CURRENT_SCHEMA } [, ... ]
Description
CREATE PUBLICATION adds a new publication into the current database. The publication name must be distinct from the name of any existing publication in the current database.
A publication is essentially a group of tables whose data changes are intended to be replicated through logical replication. SeeSection 29.1 for details about how publications fit into the logical replication setup.
Parameters
nameThe name of the new publication.
FOR TABLESpecifies a list of tables to add to the publication. If
ONLYis specified before the table name, only that table is added to the publication. IfONLYis not specified, the table and all its descendant tables (if any) are added. Optionally,*can be specified after the table name to explicitly indicate that descendant tables are included. This does not apply to a partitioned table, however. The partitions of a partitioned table are always implicitly considered part of the publication, so they are never explicitly added to the publication.If the optional
WHEREclause is specified, it defines arow filter expression. Rows for which theexpressionevaluates to false or null will not be published. Note that parentheses are required around the expression. It has no effect onTRUNCATEcommands.When a column list is specified, only the named columns are replicated. If no column list is specified, all columns of the table are replicated through this publication, including any columns added later. It has no effect on
TRUNCATEcommands. SeeSection 29.4 for details about column lists.Only persistent base tables and partitioned tables can be part of a publication. Temporary tables, unlogged tables, foreign tables, materialized views, and regular views cannot be part of a publication.
Specifying a column list when the publication also publishes
FOR TABLES IN SCHEMAis not supported.When a partitioned table is added to a publication, all of its existing and future partitions are implicitly considered to be part of the publication. So, even operations that are performed directly on a partition are also published via publications that its ancestors are part of.
FOR ALL TABLESMarks the publication as one that replicates changes for all tables in the database, including tables created in the future.
FOR TABLES IN SCHEMAMarks the publication as one that replicates changes for all tables in the specified list of schemas, including tables created in the future.
Specifying a schema when the publication also publishes a table with a column list is not supported.
Only persistent base tables and partitioned tables present in the schema will be included as part of the publication. Temporary tables, unlogged tables, foreign tables, materialized views, and regular views from the schema will not be part of the publication.
When a partitioned table is published via schema level publication, all of its existing and future partitions are implicitly considered to be part of the publication, regardless of whether they are from the publication schema or not. So, even operations that are performed directly on a partition are also published via publications that its ancestors are part of.
WITH (publication_parameter[=value] [, ... ] )This clause specifies optional parameters for a publication. The following parameters are supported:
publish(string)This parameter determines which DML operations will be published by the new publication to the subscribers. The value is comma-separated list of operations. The allowed operations are
insert,update,delete, andtruncate. The default is to publish all actions, and so the default value for this option is'insert, update, delete, truncate'.This parameter only affects DML operations. In particular, the initial data synchronization (seeSection 29.7.1) for logical replication does not take this parameter into account when copying existing table data.
publish_via_partition_root(boolean)This parameter determines whether changes in a partitioned table (or on its partitions) contained in the publication will be published using the identity and schema of the partitioned table rather than that of the individual partitions that are actually changed; the latter is the default. Enabling this allows the changes to be replicated into a non-partitioned table or a partitioned table consisting of a different set of partitions.
This parameter also affects how row filters and column lists are chosen for partitions; see below for details.
If this is enabled,
TRUNCATEoperations performed directly on partitions are not replicated.
Notes
IfFOR TABLE,FOR ALL TABLES orFOR TABLES IN SCHEMA are not specified, then the publication starts out with an empty set of tables. That is useful if tables or schemas are to be added later.
The creation of a publication does not start replication. It only defines a grouping and filtering logic for future subscribers.
To create a publication, the invoking user must have theCREATE privilege for the current database. (Of course, superusers bypass this check.)
To add a table to a publication, the invoking user must have ownership rights on the table. TheFOR ALL TABLES andFOR TABLES IN SCHEMA clauses require the invoking user to be a superuser.
The tables added to a publication that publishesUPDATE and/orDELETE operations must haveREPLICA IDENTITY defined. Otherwise those operations will be disallowed on those tables.
Any column list must include theREPLICA IDENTITY columns in order forUPDATE orDELETE operations to be published. There are no column list restrictions if the publication publishes onlyINSERT operations.
A row filter expression (i.e., theWHERE clause) must contain only columns that are covered by theREPLICA IDENTITY, in order forUPDATE andDELETE operations to be published. For publication ofINSERT operations, any column may be used in theWHERE expression. The row filter allows simple expressions that don't have user-defined functions, user-defined operators, user-defined types, user-defined collations, non-immutable built-in functions, or references to system columns.
The row filter on a table becomes redundant ifFOR TABLES IN SCHEMA is specified and the table belongs to the referred schema.
For published partitioned tables, the row filter for each partition is taken from the published partitioned table if the publication parameterpublish_via_partition_root is true, or from the partition itself if it is false (the default). SeeSection 29.3 for details about row filters. Similarly, for published partitioned tables, the column list for each partition is taken from the published partitioned table if the publication parameterpublish_via_partition_root is true, or from the partition itself if it is false.
For anINSERT ... ON CONFLICT command, the publication will publish the operation that results from the command. Depending on the outcome, it may be published as eitherINSERT orUPDATE, or it may not be published at all.
For aMERGE command, the publication will publish anINSERT,UPDATE, orDELETE for each row inserted, updated, or deleted.
ATTACHing a table into a partition tree whose root is published using a publication withpublish_via_partition_root set totrue does not result in the table's existing contents being replicated.
COPY ... FROM commands are published asINSERT operations.
Examples
Create a publication that publishes all changes in two tables:
CREATE PUBLICATION mypublication FOR TABLE users, departments;
Create a publication that publishes all changes from active departments:
CREATE PUBLICATION active_departments FOR TABLE departments WHERE (active IS TRUE);
Create a publication that publishes all changes in all tables:
CREATE PUBLICATION alltables FOR ALL TABLES;
Create a publication that only publishesINSERT operations in one table:
CREATE PUBLICATION insert_only FOR TABLE mydata WITH (publish = 'insert');
Create a publication that publishes all changes for tablesusers,departments and all changes for all the tables present in the schemaproduction:
CREATE PUBLICATION production_publication FOR TABLE users, departments, TABLES IN SCHEMA production;
Create a publication that publishes all changes for all the tables present in the schemasmarketing andsales:
CREATE PUBLICATION sales_publication FOR TABLES IN SCHEMA marketing, sales;
Create a publication that publishes all changes for tableusers, but replicates only columnsuser_id andfirstname:
CREATE PUBLICATION users_filtered FOR TABLE users (user_id, firstname);
Compatibility
CREATE PUBLICATION is aPostgres Pro extension.