我在尝试删除一堆记录然后插入新记录后遇到以下错误:
Error: SQLSTATE[23505]: Unique violation: 7 ERROR: duplicate key value violates unique constraint "routes_pkey" DETAIL: Key (id)=(1328) already exists.
SQL Query:
INSERT INTO routes (agency_id, route_identifier, short_name, long_name, description, route_color, text_color) VALUES (:c0, :c1, :c2, :c3, :c4, :c5, :c6) RETURNING *
下面是代码的简化版本:
$routes = TableRegistry::get('Routes');
$routes->deleteAll(['agency_id' => $agency->id]);
# Data to be updated
$patchData = [
'stops' => $stopData,
'static_data_modified' => Time::now()
];
$patchOptions = [
'associated' => ['Stops.Routes']
];
# If: The stops have already been added to the DB
# Then: Remove them from the patch data
if (isset($stopData['_ids'])) {
unset($patchData['stops']);
# Change settings for this implementation type
$patchOptions = [];
$stopCount = count($stopData['_ids']);
}
$agency = $this->Agencies->patchEntity($agency, $patchData, $patchOptions);
$this->Agencies->save($agency);
似乎出于某种原因,Postgres 认为我正在插入具有重复主键的记录。但是我从我的代码中看不出这怎么可能。
以下是我在 SQL 日志末尾看到的内容:
DELETE FROM
routes
WHERE
agency_id = 51
BEGIN
SELECT
1 AS "existing"
FROM
agencies Agencies
WHERE
Agencies.id = 51
LIMIT
1
INSERT INTO routes (
agency_id, route_identifier, short_name,
long_name, description, route_color,
text_color
)
VALUES
(
51, '100001', '1', '', 'Kinnear - Downtown Seattle',
'', ''
) RETURNING *
ROLLBACK
知道为什么我看到此错误吗?
我在 CakePHP v3.1 和 Postgresql 9.4 上
我试图添加这个,但它没有改变任何东西:
$connection = ConnectionManager::get('default');
$results = $connection->execute('SET CONSTRAINT = routes_pkey DEFERRED');
以下是我读过的类似问题,但没有找到解决方案:
- 错误:重复的键值违反了 postgres 中的唯一约束
- Cakephp 重复键值违反唯一约束
- 错误:重复的键值违反了唯一约束
- 错误:重复的键值违反了唯一约束"xak1fact_dim_relationship">
- PostgreSQL:错误重复键值违反唯一约束
- https://stackoverflow.com/questions/33416321/postgresql-bdr-error-duplicate-key-value-violates-unique-constraint-bdr-node
更新根据muistooshort的评论,我从路由表中删除了所有记录并重新运行了代码,它工作正常。之后我第二次运行它时,它也能正常工作。所以我认为这支持 mu 的理论,即数据库中的现有记录(不是我的代码(有问题。我认为现在更好的问题是数据库中究竟是什么情况导致了这种情况,我该如何解决它们?
PostgreSQL 中的serial
类型非常简单:它本质上是一个integer
列,其默认值来自序列。但是序列不知道您对表执行的操作,因此如果您在不使用或更新序列的情况下为serial
指定值,事情可能会变得混乱。
例如:
create table t (
id serial not null primary key
);
insert into t (id) values (1);
insert into t (id) values (DEFAULT);
将产生唯一性冲突,因为1
被显式用于id
但序列无法知道它已被使用。
演示:http://sqlfiddle.com/#!15/17534/1
大概在某个时候的某个地方添加了一行id = 1328
,而没有来自序列的id
。或者,也许使用 setval
调整了用于 PK 默认值的序列,以开始返回表中已有的值。
在任何情况下,最简单的方法是使用以下setval
调整序列以匹配表的当前内容:
select setval('routes_id_seq', (select max(id) from routes));
序列应该被称为routes_id_seq
但如果不是,您可以使用psql
中的d routes
来找出它的名称。
因此,如果我们将前面的示例更新为:
create table t (
id serial not null primary key
);
insert into t (id) values (1);
select setval('t_id_seq', (select max(id) from t));
insert into t (id) values (DEFAULT);
然后,我们将在表中获取1
和2
,而不是1
和错误。
演示:http://sqlfiddle.com/#!15/17534/7