BUG #18558: ALTER PUBLICATION fails with unhelpful error on attempt to use system column

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: exclusion(at)gmail(dot)com
Subject: BUG #18558: ALTER PUBLICATION fails with unhelpful error on attempt to use system column
Date: 2024-07-27 09:00:01
Message-ID: 18558-411bc81b03592125@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 18558
Logged by: Alexander Lakhin
Email address: exclusion(at)gmail(dot)com
PostgreSQL version: 17beta2
Operating system: Ubuntu 22.04
Description:

The following script:
CREATE TABLE t(a int);
CREATE PUBLICATION p FOR TABLE t(a);

ALTER PUBLICATION p SET TABLE t (a, ctid);
triggers
ERROR: negative bitmapset member not allowed

Whilst:
CREATE PUBLICATION p FOR TABLE t(a, ctid);
ends up with a more informative
ERROR: cannot use system column "ctid" in publication column list

Reproduced on REL_15_STABLE .. master.

Browse pgsql-bugs by date

  From Date Subject
Previous Message 燕尘 2024-07-27 00:22:54 Re: BUG #18553: Please seriously address the severe issue of database installation failures on Windows 10.