在 v0.12.2 中,支持:
insert into root.test2.wf01.wt01(time, json ,`status`) values (111, "abcddf", true)
但不支持:
insert into root.test2.wf01.wt01(json, `status`, time) values ("abcddf", true, 111)
得到错误信息:
Msg: 401: line 1:34 mismatched input 'json' expecting {'.', '('}
我正在开发一个 ORM 工具。如果时间一定要在第一列,很多流行的 ORM 工具(hibernate、JPA、Spring Data)将无法集成 IoTDB。