29.CURL 语句
EXPLAIN
INSERT INTO tutorial (KEY, VALUE)
VALUES ("baldwin", {"name":"Alex Baldwin", "type":"contact"}){
"results": [
{
"plan": {
"#operator": "Sequence",
"~children": [
{
"#operator": "ValueScan",
"values": "[[\"baldwin\", {\"name\": \"Alex Baldwin\", \"type\": \"contact\"}]]"
},
{
"#operator": "Parallel",
"maxParallelism": 1,
"~child": {
"#operator": "Sequence",
"~children": [
{
"#operator": "SendInsert",
"alias": "tutorial",
"keyspace": "tutorial",
"namespace": "default"
},
{
"#operator": "Discard"
}
]
}
}
]
},
"text": "\n INSERT INTO tutorial (KEY, VALUE) \n VALUES (\"baldwin\", {\"name\":\"Alex Baldwin\", \"type\":\"contact\"})"
}
]
}Last updated