Georg Pfolz wrote 01.12.2023 20:24:
> As I'm not getting any errors, I suppose I missed something in the configuration.
Did you enable publication and include some table(s) into it?
Quoting the documentation:
> Inside the database, replication should be enabled via the DDL command:
> ALTER DATABASE ENABLE PUBLICATION
>
> Also, the replication set (aka publication) should be defined. It includes tables that should be replicated. This is also done via the DDL command:
>
> -- to replicate all tables (including the ones created later):
> ALTER DATABASE INCLUDE ALL TO PUBLICATION
> -- to replicate specific tables:
> ALTER DATABASE INCLUDE TABLE T1, T2, T3 TO PUBLICATION
--
WBR, SD.