Thread
Commits
-
Improve subscriber's error message for wrong publication relkind.
- efae4401c430 11.16 landed
- e16db75dd6ba 12.11 landed
- 17a8c4c3a274 10.21 landed
-
Better error message for unsupported replication cases
Tom Lane <tgl@sss.pgh.pa.us> — 2022-02-14T22:12:10Z
In [1] there's a complaint that if you try to logically replicate a partitioned table from v13-or-later to v12-or-earlier, you get "table XXX not found on publisher", which is pretty confusing because the publisher certainly does have such a table. That happens because fetch_remote_table_info is too aggressive about filtering by relkind and doesn't see the relation at all. c314c147c improved that, but it wasn't back-patched. I propose putting the attached into v10-v12. Maybe the error message could be bikeshedded ... is "non-table relation" terminology that we use in user-facing messages? regards, tom lane [1] https://www.postgresql.org/message-id/CANhtRiamAgYt1A-Nh4%3DmU3E1UhG9XPgB%2BX6mW1DWqa93vUXW9A%40mail.gmail.com
-
Re: Better error message for unsupported replication cases
Amit Kapila <amit.kapila16@gmail.com> — 2022-02-15T03:26:36Z
On Tue, Feb 15, 2022 at 3:42 AM Tom Lane <tgl@sss.pgh.pa.us> wrote: > > In [1] there's a complaint that if you try to logically replicate > a partitioned table from v13-or-later to v12-or-earlier, you get > "table XXX not found on publisher", which is pretty confusing > because the publisher certainly does have such a table. That > happens because fetch_remote_table_info is too aggressive about > filtering by relkind and doesn't see the relation at all. > c314c147c improved that, but it wasn't back-patched. I propose > putting the attached into v10-v12. Maybe the error message > could be bikeshedded ... is "non-table relation" terminology > that we use in user-facing messages? > The other option could be "logical replication source relation \"%s.%s\" is not a table". We use a similar message in CheckSubscriptionRelkind. -- With Regards, Amit Kapila.
-
Re: Better error message for unsupported replication cases
Tom Lane <tgl@sss.pgh.pa.us> — 2022-02-15T03:58:32Z
Amit Kapila <amit.kapila16@gmail.com> writes: > On Tue, Feb 15, 2022 at 3:42 AM Tom Lane <tgl@sss.pgh.pa.us> wrote: >> ... Maybe the error message >> could be bikeshedded ... is "non-table relation" terminology >> that we use in user-facing messages? > The other option could be "logical replication source relation > \"%s.%s\" is not a table". We use a similar message in > CheckSubscriptionRelkind. Works for me, I'll do it like that if there are no objections. regards, tom lane