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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
table_create Shops TABLE_HASH_KEY ShortText
[[0,0.0,0.0],true]
column_create Shops location COLUMN_SCALAR WGS84GeoPoint
[[0,0.0,0.0],true]
load --table Shops
[
{"_key":"Tokyo","location":"x"}
]
[
[
[
-22,
0.0,
0.0
],
"<Shops.location>: failed to cast to <WGS84GeoPoint>: <\"x\">"
],
1
]
#|e| <Shops.location>: failed to cast to <WGS84GeoPoint>: <"x">
#|e| [table][load][Shops][location] failed to set column value: <Shops.location>: failed to cast to <WGS84GeoPoint>: <"x">: key: <"Tokyo">, value: <"x">
table_list
[
[
0,
0.0,
0.0
],
[
[
[
"id",
"UInt32"
],
[
"name",
"ShortText"
],
[
"path",
"ShortText"
],
[
"flags",
"ShortText"
],
[
"domain",
"ShortText"
],
[
"range",
"ShortText"
],
[
"default_tokenizer",
"ShortText"
],
[
"normalizer",
"ShortText"
]
],
[
256,
"Shops",
"db/db.0000100",
"TABLE_HASH_KEY|PERSISTENT",
"ShortText",
null,
null,
null
]
]
]
|