gpt4 book ai didi

Cassandra - 使用 CQL 将数据插入嵌套集合类型

转载 作者:行者123 更新时间:2023-12-02 23:18:38 25 4
gpt4 key购买 nike

我需要一些有关在表(具有嵌套集合 TYPE)列中插入数据的帮助。

我收到以下错误:

Error from server: code=2200 [Invalid query] message="Unknown field 'icon_id' in value of user defined type tst_diag_msg_typ"

预先感谢您的帮助!!

这就是我正在做的事情:

CREATE TYPE cs_veh.tst_icon_typ (
icon_id text,
icon_val text
);


CREATE TYPE cs_veh.tst_diag_msg_typ (
msg_id text,
msg_priority int,
msg_text text,
IconReason SET <FROZEN<tst_icon_typ>>
);


CREATE TABLE test_veh_health
(VIN text,
eventtimestamp timestamp,
DiagnosticMessages SET < FROZEN <tst_diag_msg_typ>>,
PRIMARY KEY((VIN),eventtimestamp ))
WITH CLUSTERING ORDER BY (eventtimestamp DESC);
insert into test_veh_health
( VIN,
eventtimestamp
, DiagnosticMessages
)
values
('TEST122227751',
toTimestamp(now())
,{{msg_id : '24.0:ENGINE:MESSAGE', msg_priority : 37, msg_text : 'Oil pressure: Engine off! See owners manual.' }
, { icon_id : 'xx', icon_val: 'text'}
}
);

最佳答案

尝试下面的插入语句:

INSERT INTO test_veh_health(vin, eventtimestamp, diagnosticmessages) VALUES (
'TEST122227751',
toTimestamp(now()),
{
{
msg_id : '24.0:ENGINE:MESSAGE',
msg_priority : 37,
msg_text : 'Oil pressure: Engine off! See owners manual.' ,
iconreason : {
{
icon_id : 'xx',
icon_val: 'text'
}
}
}
}
);

输出:

cqlsh:test> SELECT * FROM test_veh_health ;

@ Row 1
--------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------
vin | TEST122227751
eventtimestamp | 2017-08-11 19:07:27.545000+0000
diagnosticmessages | {{msg_id: '24.0:ENGINE:MESSAGE', msg_priority: 37, msg_text: 'Oil pressure: Engine off! See owners manual.', iconreason: {{icon_id: 'xx', icon_val: 'text'}}}}

@ Row 2
--------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------
vin | TEST122227751
eventtimestamp | 2017-08-11 18:54:57.519000+0000
diagnosticmessages | null

关于Cassandra - 使用 CQL 将数据插入嵌套集合类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45641070/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com