我正在尝试使用 Node sdk 更新一行,但我不断收到Error: NoSQLArgumentError: [ILLEGAL_ARGUMENT] PUT: Illegal Argument: Value should not be set for a generated always identity column: id.
我在这里做错了什么?
async function update(id, data, table)
{
var timestamp = new Date
res = await client.putIfPresent(table, {
id: id,
last_modified: timestamp,
json_document: data
})
}