在灯具和唯一标识符错误中使用合并键

发布于 2024-11-10 14:00:20 字数 322 浏览 3 评论 0原文

我正在尝试将合并键与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你的他你的她 2024-11-17 14:00:20

我想知道这是否是由于合并键在 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

一花一树开 2024-11-17 14:00:20

您必须在 item_a 和 item_b 上指定具体的 ID。

You would have to specify concrete ids on item_a and item_b.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文