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
|
table_create Records TABLE_NO_KEY
[[0,0.0,0.0],true]
table_create Data TABLE_NO_KEY
[[0,0.0,0.0],true]
column_create Data record COLUMN_SCALAR|MISSING_ADD Records
[[0,0.0,0.0],true]
load --table Records
[
{}
]
[[0,0.0,0.0],1]
load --table Data
[
{"record": 1}
]
[[0,0.0,0.0],1]
dump
table_create Data TABLE_NO_KEY
table_create Records TABLE_NO_KEY
column_create Data record COLUMN_SCALAR Records
load --table Records
[
["_id"],
[1]
]
load --table Data
[
["_id","record"],
[1,1]
]
|