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
|
Execution example::
table_create NoneExpantionDrilldownMemos TABLE_HASH_KEY ShortText
# [[0,1337566253.89858,0.000355720520019531],true]
column_create NoneExpantionDrilldownMemos tags COLUMN_VECTOR ShortText
# [[0,1337566253.89858,0.000355720520019531],true]
load --table NoneExpantionDrilldownMemos
[
{"_key": "Groonga is fast!", "tags": ["Groonga"]},
{"_key": "Mroonga uses Groonga!", "tags": ["Groonga", "Mroonga"]},
{"_key": "PGroonga uses Groonga!", "tags": ["Groonga", "PGroonga"]},
{"_key": "Mroonga and PGroonga are Groonga family", "tags": ["Groonga", "Mroonga", "PGroonga"]}
]
# [[0,1337566253.89858,0.000355720520019531],4]
select NoneExpantionDrilldownMemos \
--drilldowns[tags].keys tags \
--drilldowns[tags].key_vector_expansion NONE \
--drilldowns[tags].columns[none_expantion].stage initial \
--drilldowns[tags].columns[none_expantion].value _key \
--drilldowns[tags].columns[none_expantion].flags COLUMN_VECTOR \
--drilldowns[tags].sort_keys 'none_expantion' \
--drilldowns[tags].output_columns 'none_expantion, _nsubrecs' \
--limit 0
# [
# [
# 0,
# 1337566253.89858,
# 0.000355720520019531
# ],
# [
# [
# [
# 4
# ],
# [
# [
# "_id",
# "UInt32"
# ],
# [
# "_key",
# "ShortText"
# ],
# [
# "tags",
# "ShortText"
# ]
# ]
# ],
# {
# "tags": [
# [
# 3
# ],
# [
# [
# "none_expantion",
# "Text"
# ],
# [
# "_nsubrecs",
# "Int32"
# ]
# ],
# [
# [
# "Groonga"
# ],
# 4
# ],
# [
# [
# "Mroonga"
# ],
# 2
# ],
# [
# [
# "PGroonga"
# ],
# 2
# ]
# ]
# }
# ]
# ]
|