好的,所以我有,在我看来这是一个非常奇怪的问题。我有一个使用以下 SQL 创建的 Postgres 表:
CREATE TABLE message
(
message text,
author integer,
thread integer,
id serial NOT NULL,
"createdAt" timestamp with time zone,
"updatedAt" timestamp with time zone,
CONSTRAINT message_pkey PRIMARY KEY (id)
)
WITH (
OIDS=FALSE
);
ALTER TABLE message
OWNER TO glenselle;
我正在使用 Sails.js(它使用 Waterline ORM)将消息模型保存到数据库中。请注意,在尝试隔离问题的过程中,每次尝试保存新记录时我都会开始丢弃表,并且行为始终相同。ORM 正在为我做一些关联,以将作者与用户模型相关联,将线程与线程模型相关联。无论如何,当我尝试保存记录时,我首先得到这个:
ERROR: duplicate key value violates unique constraint "message_pkey"
DETAIL: Key (id)=(1) already exists.
STATEMENT: INSERT INTO "message" ("message", "author", "thread", "id", "createdAt", "updatedAt") values ($1, $2, $3, $4, $5, $6) RETURNING *
所以这应该很容易理解。表中已经有一行 id 为 1,这就是违反“message_pkey”约束的原因。但具有讽刺意味的是,没有数据!所以我的问题是,如果表中绝对没有数据(它只是被删除并使用我在上面发布的 SQL 重新创建它),会发生什么导致 Postgres 引发唯一约束违规?
这是我正在运行以创建模型的内容:
create: function(req, res) {
var self = this;
Thread.create({}, function(err, newThread) {
if(err) return console.log(err);
Message.create({message: req.body.conversation[0].message}, function(err, newMessage) {
if(err) return console.log(err);
// This returns an array of user ids
sails.controllers.thread.parseUserIds(req.body.participants, req.user, function(idList) {
// First, associate the message with the author
newMessage.author = req.user.id;
newMessage.save(function(err, savedMessage) {
if(err) return console.log(err);
// First, associate the participants with the thread
newThread.participants.add(idList);
// Next, associate the message with the thread
newThread.conversation.add(savedMessage);
newThread.save(function(err, savedThread) {
if(err) return console.log(err);
console.log('The thread looks to have been saved. Check it out!');
return res.json(savedThread);
});
});
});
});
});
},