how to configure access control between the subscription and the
publication instance.
+
+ Creating a subscription that connects to the same database cluster (for
+ example, to replicate between databases in the same cluster or to replicate
+ within the same database) will only succeed if the replication slot is not
+ created as part of the same command. Otherwise, the CREATE
+ SUBSCRIPTION call will hang. To make this work, create the
+ replication slot separately (using the
+ function pg_create_logical_replication_slot with the
+ plugin name pgoutput) and create the subscription using
+ the parameter create_slot = false. This is an
+ implementation restriction that might be lifted in a future release.
+