On 1/30/18 08:47, Gabriel Furstenheim Milerud wrote:
> create table test_table_replication (a int);
> create publication test_table_replication_pub for table
> test_table_replication;
> create table some_schema.test_table_replication (a int);
> create subscription test_table_replicatio
Hi,
I've been following
https://hackernoon.com/postgresql-logical-replication-86df5b51cc5a to set
up logical replication.
I've created the table in master and publication
create table test_table_replication (a int);
create publication test_table_replication_pub for table
test_table_replic