PostgreSQL - Advanced Features
Given a publication created with
CREATE PUBLICATION pub1 FOR TABLE employees;and a subscription created with
CREATE SUBSCRIPTION sub1 CONNECTION 'host=publisher' PUBLICATION pub1;What will happen if a new row is inserted into employees on the publisher?
