架构无法初始化"无法找到字段ID ..."例外

时间:2015-11-27 11:05:13

标签: java tarantool

我需要一只手,似乎我弄错了。

我在auth之后不断得到以下内容:

{{1}}

我认为可以,因为空间中没有数据,可能没有元数据。所以我添加了所有字段的记录,但错误仍然存​​在。

那该怎么办呢? Tarantool记录是元组,我可以存储任意数量的字段,所以我认为字段映射中的字段基本上是枚举,只有订单计数。我哪里错了?

1 个答案:

答案 0 :(得分:4)

你忘记了space.format吗? 下面的示例设置第一个字段具有名称' id'并键入' num'第二个字段有名称' text'并输入' str'

space = box.schema.space.create('tester')

box.space.tester:create_index('primary', {type = 'hash', parts = {1, 'NUM'}})

box.space.tester:format{{name='id',type='num'},{name='text',type='str'}}