我有一个如下创建的表:
CREATE TABLE my_table (
date text,
id text,
time timestamp,
value text,
PRIMARY KEY (id));
CREATE INDEX recordings_date_ci ON recordings (date);
我可以使用以下节点代码简单地向表中添加一个新行:
const cassandra = require('cassandra-driver');
const client = new cassandra.Client({ contactPoints: ['localhost'], keyspace: 'my_keyspace'});
const query = 'INSERT INTO my_table (date, id, time, url) VALUES (?, ?, ?, ?)';
client.execute(query, ['20160901', '0000000000', '2016-09-01 00:00:00+0000', 'random url'], function(err, result) {
if (err){
console.log(err);
}
console.log('Insert row ended:' + result);
});
但是,我收到以下错误:
'错误:日期 (24) 的预期长度为 8 或 0 字节
当我将时间戳更改为 epoc 时间时:
client.execute(query, ['20160901', '0000000000', 1472688000, 'random url']
我得到:d
溢出错误:标准化天数太大而无法放入 C int
我可以通过 cqlsh 插入新行,所以我可能在 node.js 驱动程序中遗漏了一些东西。
任何想法?
谢谢