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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
table_create Tags TABLE_PAT_KEY ShortText
[[0,0.0,0.0],true]
column_create Tags category COLUMN_SCALAR ShortText
[[0,0.0,0.0],true]
table_create Memos TABLE_HASH_KEY ShortText
[[0,0.0,0.0],true]
column_create Memos tag COLUMN_SCALAR Tags
[[0,0.0,0.0],true]
load --table Memos
[
{"_key": "Groonga is fast!", "tag": "Groonga"},
{"_key": "Mroonga is fast!", "tag": "Mroonga"},
{"_key": "Groonga sticker!", "tag": "Groonga"},
{"_key": "Rroonga is fast!", "tag": "Rroonga"}
]
[[0,0.0,0.0],4]
load --table Tags
[
{"_key": "Groonga", "category": "C/C++"},
{"_key": "Mroonga", "category": "C/C++"},
{"_key": "Rroonga", "category": "Ruby"}
]
[[0,0.0,0.0],3]
select Memos --drilldowns[category].table '' --drilldowns[category].keys category --drilldowns[category].output_columns _key,_nsubrecs --drilldowns[tag].keys tag --drilldowns[tag].output_columns _key,_nsubrecs,category
[
[
0,
0.0,
0.0
],
[
[
[
4
],
[
[
"_id",
"UInt32"
],
[
"_key",
"ShortText"
],
[
"tag",
"Tags"
]
],
[
1,
"Groonga is fast!",
"Groonga"
],
[
2,
"Mroonga is fast!",
"Mroonga"
],
[
3,
"Groonga sticker!",
"Groonga"
],
[
4,
"Rroonga is fast!",
"Rroonga"
]
],
{
"tag": [
[
3
],
[
[
"_key",
"ShortText"
],
[
"_nsubrecs",
"Int32"
],
[
"category",
"ShortText"
]
],
[
"Groonga",
2,
"C/C++"
],
[
"Mroonga",
1,
"C/C++"
],
[
"Rroonga",
1,
"Ruby"
]
]
}
]
]
#|w| [table-sort-key][string] ignore invalid sort key: <category>: table:<Memos> keys:<category>
|