在灯具和唯一标识符错误中使用合并键
我正在尝试将合并键与 Rails YAML 固定装置一起使用。我有:
BOOK: &BOOK
name: To Kill a Mocking Bird
upc: 0215192786624
item_a:
owner: user_a
<<: *BOOK
item_b:
owner: user_b
<<: *BOOK
然而,这会导致 Sqlite 在我们的一些开发机器上抱怨重复的相同主键。有什么想法吗?我检查过,所有计算机都运行 1.9.2 p180,并且该问题只发生在我们大约一半的计算机上。谢谢。
I'm trying to use merge keys with a Rails YAML fixture. I have:
BOOK: &BOOK
name: To Kill a Mocking Bird
upc: 0215192786624
item_a:
owner: user_a
<<: *BOOK
item_b:
owner: user_b
<<: *BOOK
However, this causes Sqlite to complain on some of our development machines about duplicate identical primary keys. Any ideas? I checked and all computers are running 1.9.2 p180, and the problem happens only on about half our machines. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想知道这是否是由于合并键在 ruby 1.9 中不起作用的问题造成的。更具体地说,切换到 psych yaml 解析器:
http://redmine.ruby-lang.org /问题/显示/4300
I wonder if this is due to an issue with merge keys not working in ruby 1.9. More specifically the switch to the psych yaml parser:
http://redmine.ruby-lang.org/issues/show/4300
您必须在 item_a 和 item_b 上指定具体的 ID。
You would have to specify concrete ids on item_a and item_b.