PostgreSQL 16 bug feedback - Mailing list pgsql-hackers

From yexiu-glory
Subject PostgreSQL 16 bug feedback
Date
Msg-id tencent_302D1B86EFF0C33D8C11D5DE37E09B8DD206@qq.com
Whole thread Raw
Responses Re: PostgreSQL 16 bug feedback
Re: PostgreSQL 16 bug feedback
List pgsql-hackers
I encountered a problem in PostgreSQL 16:
In db1, there is a user table with fields id, name, phone, and createtime
db2 replicates the user table from db1 through logical replication, specifying the fields as id, name, and createtime
Then, in db1, perform the following operation: alter table user replica identity full;
Then, modifying or deleting a record in the user table will result in an error,
The error message for modification is as follows, and similar errors also occur when deleting.
update "public"."user" set name='aaa’where id = 20005
>ERROR: cannot update table "user"DETAIL: Column list used by the publication does not cover the replica identity.

pgsql-hackers by date:

Previous
From: John Naylor
Date:
Subject: Re: [V2] Adding new CRC32C implementation for IBM S390X
Next
From: Álvaro Herrera
Date:
Subject: Re: [Feature Request] Support INSERT ... FROM ... TO for date ranges