Re: pgsql: pg_createsubscriber: creates a new logical replica from a standb

2024-03-26 Thread Peter Eisentraut
I have committed your patch to tidy this up. Thanks. On 26.03.24 06:01, Kyotaro Horiguchi wrote: Hello. This commit added the following error message: pg_createsubscriber.c: 375 pg_fatal("could not access directory \"%s\": %s", datadir,

Re: pgsql: pg_createsubscriber: creates a new logical replica from a standb

2024-03-25 Thread Kyotaro Horiguchi
Hello. This commit added the following error message: pg_createsubscriber.c: 375 > pg_fatal("could not access directory \"%s\": %s", > datadir, >strerror(errno)); Although other messages use %s with PQresultErrorMessage(), regarding

pgsql: pg_createsubscriber: creates a new logical replica from a standb

2024-03-25 Thread Peter Eisentraut
pg_createsubscriber: creates a new logical replica from a standby server It must be run on the target server and should be able to connect to the source server (publisher) and the target server (subscriber). All tables in the specified database(s) are included in the logical replication setup. A