我有一个具有 2 个节点(多主复制)的 Postgres BDR 集群。我创建了一个具有自动增量主键的表,如下所示:
create table t1 (id serial primary key, name text);
我从 node1 在该表上添加了一些值:
insert into t1(name) values('foo');
现在,当我尝试从 node2 向该表中添加另一个值时,我收到该错误:
ERROR: duplicate key value violates unique constraint "t1_pkey"
DETAIL: Key (id)=(1) already exists.