Created
November 5, 2015 08:11
-
-
Save naoa/6bd6c19244b37ced2ce9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table_create Tags TABLE_PAT_KEY ShortText | |
[[0,0.0,0.0],true] | |
table_create Memos TABLE_HASH_KEY ShortText | |
[[0,0.0,0.0],true] | |
column_create Memos tags COLUMN_VECTOR Tags | |
[[0,0.0,0.0],true] | |
load --table Memos | |
[ | |
{"_key": "Rroonga", "tags": ["Groonga", "Ruby"]}, | |
{"_key": "Groonga", "tags": ["Groonga"]}, | |
{"_key": "Blank", "tags": [""]}, | |
{"_key": "Nothing"} | |
] | |
[[0,0.0,0.0],4] | |
select Memos --output_columns 'tags' | |
[ | |
[ | |
0, | |
0.0, | |
0.0 | |
], | |
[ | |
[ | |
[ | |
4 | |
], | |
[ | |
[ | |
"tags", | |
"Tags" | |
] | |
], | |
[ | |
[ | |
"Groonga", | |
"Ruby" | |
] | |
], | |
[ | |
[ | |
"Groonga" | |
] | |
], | |
[ | |
[ | |
"G" | |
] | |
], | |
[ | |
[ | |
] | |
] | |
] | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment