我正在跟进一个 我之前问的问题,在这个 我之前问的问题中,我试图寻求从一个愚蠢的/写得很差的 mysql 查询到 postgreql 的转换。我想我成功了。无论如何,我使用的数据是手动从 mysql 数据库转移到 postgres 数据库。我使用了一个看起来像这样的查询:
UPDATE krypdos_coderound cru
set is_correct = case
when t.kv_values1 = t.kv_values2 then True
else False
end
from
(select cr.id,
array_agg(
case when kv1.code_round_id = cr.id
then kv1.option_id
else null end
) as kv_values1,
array_agg(
case when kv2.code_round_id = cr_m.id
then kv2.option_id
else null end
) as kv_values2
from krypdos_coderound cr
join krypdos_value kv1 on kv1.code_round_id = cr.id
join krypdos_coderound cr_m
on cr_m.object_id=cr.object_id
and cr_m.content_type_id =cr.content_type_id
join krypdos_value kv2 on kv2.code_round_id = cr_m.id
WHERE
cr.is_master= False
AND cr_m.is_master= True
AND cr.object_id=%s
AND cr.content_type_id=%s
GROUP BY cr.id
) t
where t.id = cru.id
""" % ( self.object_id, self.content_type.id)
)
我有理由相信这个方法很有效。然而,这导致了一个新的问题。在尝试提交时,我从 django 得到一个错误:
IntegrityError at (some url):
duplicate key value violates unique constraint "krypdos_value_pkey"
我在这里看了几个回复,我还没有找到解决我的问题的方法(虽然相关的问题已经作出了一些有趣的阅读)。我在日志中看到了这一点,这很有趣,因为我从未明确调用 insert-django must 处理它:
STATEMENT: INSERT INTO "krypdos_value" ("code_round_id", "variable_id", "option_id", "confidence", "freetext")
VALUES (1105935, 11, 55, NULL, E'')
RETURNING "krypdos_value"."id"
但是,尝试运行该命令会导致重复的键错误。
# Delete current coding
CodeRound.objects.filter(
object_id=o.id, content_type=object_type, is_master=True
).delete()
code_round = CodeRound(
object_id=o.id,
content_type=object_type,
coded_by=request.user, comments=request.POST.get('_comments',None),
is_master=True,
)
code_round.save()
for key in request.POST.keys():
if key[0] != '_' or key != 'csrfmiddlewaretoken':
options = request.POST.getlist(key)
for option in options:
Value(
code_round=code_round,
variable_id=key,
option_id=option,
confidence=request.POST.get('_confidence_'+key, None),
).save() #This is where it dies
# Resave to set is_correct
code_round.save()
o.status = '3'
o.save()
我检查了序列之类的,它们似乎是有序的。在这一点上,我不知道该怎么办-我假设它的东西,姜戈的端,但我不确定。如有任何反馈将不胜感激!