1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
table_create Memos TABLE_NO_KEY
[[0,0.0,0.0],true]
column_create Memos content COLUMN_SCALAR Text
[[0,0.0,0.0],true]
load --table Memos
[
{"content": "Groonga is fast"}
]
[[0,0.0,0.0],1]
load --table Memos
[
{"_id": 1, "content": "Mroonga is fast", "_id": 1}
]
[[[-22,0.0,0.0],"[table][load][Memos] duplicated <_id> columns"],0]
#|e| [table][load][Memos] duplicated <_id> columns
select Memos
[
[
0,
0.0,
0.0
],
[
[
[
1
],
[
[
"_id",
"UInt32"
],
[
"content",
"Text"
]
],
[
1,
"Groonga is fast"
]
]
]
]
|