rroonga 0.9.5-x86-mingw32 → 1.0.1-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/NEWS.ja.rdoc +24 -0
 - data/NEWS.rdoc +24 -0
 - data/README.ja.rdoc +3 -2
 - data/README.rdoc +3 -2
 - data/Rakefile +15 -6
 - data/ext/groonga/extconf.rb +25 -25
 - data/ext/groonga/groonga.def +2 -0
 - data/ext/groonga/rb-grn-array.c +1 -1
 - data/ext/groonga/rb-grn-exception.c +14 -0
 - data/ext/groonga/rb-grn-hash.c +1 -1
 - data/ext/groonga/rb-grn-index-column.c +13 -1
 - data/ext/groonga/rb-grn-object.c +2 -2
 - data/ext/groonga/rb-grn-patricia-trie.c +394 -1
 - data/ext/groonga/rb-grn-table.c +33 -2
 - data/ext/groonga/rb-grn.h +3 -3
 - data/html/index.html +1 -1
 - data/lib/1.8/groonga.so +0 -0
 - data/lib/1.9/groonga.so +0 -0
 - data/lib/groonga/record.rb +32 -2
 - data/lib/groonga/schema.rb +1 -1
 - data/rroonga-build.rb +3 -3
 - data/test/test-patricia-trie.rb +172 -1
 - data/test/test-record.rb +7 -0
 - data/test/test-remote.rb +2 -1
 - data/test/test-table-cursor.rb +35 -1
 - data/test/test-table-select-normalize.rb +7 -3
 - data/vendor/local/bin/grntest.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/etc/groonga/groonga.conf +11 -0
 - data/vendor/local/etc/groonga/init.d/redhat/groonga +168 -0
 - data/vendor/local/etc/groonga/init.d/redhat/sysconfig/groonga +8 -0
 - data/vendor/local/include/groonga/groonga.h +38 -12
 - data/vendor/local/lib/groonga/modules/suggest/suggest.a +0 -0
 - data/vendor/local/lib/groonga/modules/suggest/suggest.dll +0 -0
 - data/vendor/local/lib/groonga/modules/suggest/suggest.dll.a +0 -0
 - data/vendor/local/lib/groonga/modules/{functions/cast.la → suggest/suggest.la} +6 -6
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +1 -1
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/images/groonga.png +0 -0
 - data/vendor/local/share/groonga/admin_html/images/loading.gif +0 -0
 - data/vendor/local/share/groonga/admin_html/js/jquery.json-2.2.min.js +31 -0
 - data/vendor/local/share/groonga/doc/ja/html/.buildinfo +4 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/characteristic.txt +56 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/cache_limit.txt +52 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/check.txt +164 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/clearlock.txt +61 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_create.txt +93 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_list.txt +97 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_remove.txt +58 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/define_selector.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/defrag.txt +57 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/delete.txt +68 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/dump.txt +62 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/load.txt +98 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_level.txt +65 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_put.txt +69 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_reopen.txt +66 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/quit.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/select.txt +247 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/shutdown.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/status.txt +59 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/suggest.txt +79 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_create.txt +111 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_list.txt +87 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_remove.txt +50 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/view_add.txt +53 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/add.txt +102 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/get.txt +78 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/set.txt +103 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer/com.txt +18 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer/document.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer/query.txt +212 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer/test.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/execfile.txt +226 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/expr.txt +43 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/edit_distance.txt +48 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_distance.txt +51 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_in_circle.txt +54 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_in_rectangle.txt +55 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/now.txt +34 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/rand.txt +41 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/grnslap.txt +64 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/grntest.txt +259 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/http.txt +52 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/index.txt +21 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/install.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/news.txt +199 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/process.txt +12 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/pseudo_column.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/reference.txt +14 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial01.txt +293 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial02.txt +100 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial03.txt +72 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial04.txt +111 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial05.txt +65 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial06.txt +91 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial07.txt +92 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial08.txt +53 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial09.txt +9 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial10.txt +486 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/type.txt +118 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/basic.css +509 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/default.css +277 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/doctools.js +247 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/file.png +0 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/jquery.js +6240 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/minus.png +0 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/plus.png +0 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/pygments.css +61 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/searchtools.js +518 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/sidebar.js +147 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/underscore.js +16 -0
 - data/vendor/local/share/groonga/doc/ja/html/characteristic.html +162 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands.html +139 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/cache_limit.html +173 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/check.html +285 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/clearlock.html +180 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/column_create.html +210 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/column_list.html +220 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/column_remove.html +183 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/define_selector.html +221 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/defrag.html +177 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/delete.html +182 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/dump.html +177 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/load.html +208 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/log_level.html +187 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/log_put.html +190 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/log_reopen.html +188 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/quit.html +156 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/select.html +331 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/shutdown.html +156 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/status.html +179 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/suggest.html +191 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/table_create.html +222 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/table_list.html +202 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/table_remove.html +173 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/view_add.html +175 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/add.html +180 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/get.html +161 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/set.html +182 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer.html +118 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer/com.html +136 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer/document.html +159 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer/query.html +336 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer/test.html +220 -0
 - data/vendor/local/share/groonga/doc/ja/html/execfile.html +370 -0
 - data/vendor/local/share/groonga/doc/ja/html/expr.html +157 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions.html +122 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/edit_distance.html +162 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/geo_distance.html +170 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/geo_in_circle.html +173 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/geo_in_rectangle.html +172 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/now.html +152 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/rand.html +159 -0
 - data/vendor/local/share/groonga/doc/ja/html/genindex.html +227 -0
 - data/vendor/local/share/groonga/doc/ja/html/grnslap.html +183 -0
 - data/vendor/local/share/groonga/doc/ja/html/grntest.html +368 -0
 - data/vendor/local/share/groonga/doc/ja/html/http.html +163 -0
 - data/vendor/local/share/groonga/doc/ja/html/index.html +291 -0
 - data/vendor/local/share/groonga/doc/ja/html/install.html +228 -0
 - data/vendor/local/share/groonga/doc/ja/html/news.html +310 -0
 - data/vendor/local/share/groonga/doc/ja/html/objects.inv +0 -0
 - data/vendor/local/share/groonga/doc/ja/html/process.html +120 -0
 - data/vendor/local/share/groonga/doc/ja/html/pseudo_column.html +147 -0
 - data/vendor/local/share/groonga/doc/ja/html/reference.html +174 -0
 - data/vendor/local/share/groonga/doc/ja/html/search.html +96 -0
 - data/vendor/local/share/groonga/doc/ja/html/searchindex.js +1 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial.html +172 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial01.html +388 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial02.html +214 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial03.html +183 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial04.html +212 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial05.html +169 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial06.html +209 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial07.html +212 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial08.html +139 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial09.html +114 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial10.html +458 -0
 - data/vendor/local/share/groonga/doc/ja/html/type.html +217 -0
 - data/vendor/local/share/groonga/doc/ja/source/__init__.py +0 -0
 - data/vendor/local/share/groonga/doc/ja/source/characteristic.txt +56 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/cache_limit.txt +52 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/check.txt +164 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/clearlock.txt +61 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/column_create.txt +93 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/column_list.txt +97 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/column_remove.txt +58 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/define_selector.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/defrag.txt +57 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/delete.txt +68 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/dump.txt +62 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/load.txt +98 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/log_level.txt +65 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/log_put.txt +69 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/log_reopen.txt +66 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/quit.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/select.txt +247 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/shutdown.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/status.txt +59 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/table_create.txt +111 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/table_list.txt +87 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/table_remove.txt +50 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/view_add.txt +53 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/add.txt +102 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/get.txt +78 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/set.txt +103 -0
 - data/vendor/local/share/groonga/doc/ja/source/conf.py +265 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer/com.txt +18 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer/document.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer/query.txt +212 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer/test.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-1.log +6 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-10.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-11.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-12.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-13.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-14.log +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-15.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-16.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-17.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-2.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-3.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-4.log +7 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-6.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-7.log +16 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-8.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-9.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-1.log +8 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-2.log +6 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-3.log +12 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-1.log +18 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-2.log +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-3.log +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-1.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-2.log +7 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-3.log +7 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-4.log +13 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-6.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-7.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-1.log +24 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-2.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-3.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-4.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-6.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-1.log +25 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-2.log +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-3.log +21 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-4.log +7 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-1.log +22 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-2.log +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-3.log +20 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-4.log +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial08-1.log +14 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-1.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-10.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-2.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-3.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-4.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-6.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-7.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-8.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-9.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/execfile.txt +226 -0
 - data/vendor/local/share/groonga/doc/ja/source/expr.txt +43 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/edit_distance.txt +48 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/geo_distance.txt +51 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/geo_in_circle.txt +54 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/geo_in_rectangle.txt +55 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/now.txt +34 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/rand.txt +41 -0
 - data/vendor/local/share/groonga/doc/ja/source/grnslap.txt +64 -0
 - data/vendor/local/share/groonga/doc/ja/source/grntest.txt +259 -0
 - data/vendor/local/share/groonga/doc/ja/source/http.txt +52 -0
 - data/vendor/local/share/groonga/doc/ja/source/index.txt +21 -0
 - data/vendor/local/share/groonga/doc/ja/source/install.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/source/news.txt +199 -0
 - data/vendor/local/share/groonga/doc/ja/source/process.txt +12 -0
 - data/vendor/local/share/groonga/doc/ja/source/pseudo_column.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/source/rdoc.py +762 -0
 - data/vendor/local/share/groonga/doc/ja/source/reference.txt +14 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial01.txt +293 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial02.txt +100 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial03.txt +72 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial04.txt +111 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial05.txt +65 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial06.txt +91 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial07.txt +92 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial08.txt +53 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial09.txt +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial10.txt +486 -0
 - data/vendor/local/share/groonga/doc/ja/source/type.txt +118 -0
 - data/vendor/local/share/groonga/doc/ja/source/update_execution_example.py +113 -0
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +46 -0
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict_import.sh +10 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +61 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro_import.sh +10 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +46 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene_import.sh +10 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/css/dictionary.css +3 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/index.html +26 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/js/dictionary.js +51 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.4.2.min.js +154 -0
 - data/vendor/local/share/groonga/examples/dictionary/init_db.sh +10 -0
 - data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +42 -0
 - data/vendor/local/share/groonga/examples/dictionary/readme.txt +71 -0
 - data/vendor/local/share/man/man1/groonga.1 +5498 -0
 - metadata +360 -118
 - data/pkg-config.rb +0 -333
 - data/pkg/rroonga-0.9.5/NEWS.ja.rdoc +0 -156
 - data/pkg/rroonga-0.9.5/NEWS.rdoc +0 -158
 - data/pkg/rroonga-0.9.5/README.ja.rdoc +0 -65
 - data/pkg/rroonga-0.9.5/README.rdoc +0 -66
 - data/pkg/rroonga-0.9.5/text/TUTORIAL.ja.rdoc +0 -394
 - data/pkg/rroonga-0.9.5/text/expression.rdoc +0 -285
 - data/test-unit/Rakefile +0 -40
 - data/test-unit/TODO +0 -5
 - data/test-unit/bin/testrb +0 -5
 - data/test-unit/html/classic.html +0 -15
 - data/test-unit/html/index.html +0 -25
 - data/test-unit/html/index.html.ja +0 -27
 - data/test-unit/lib/test/unit.rb +0 -323
 - data/test-unit/lib/test/unit/assertionfailederror.rb +0 -25
 - data/test-unit/lib/test/unit/assertions.rb +0 -1230
 - data/test-unit/lib/test/unit/attribute.rb +0 -125
 - data/test-unit/lib/test/unit/autorunner.rb +0 -360
 - data/test-unit/lib/test/unit/collector.rb +0 -36
 - data/test-unit/lib/test/unit/collector/descendant.rb +0 -23
 - data/test-unit/lib/test/unit/collector/dir.rb +0 -108
 - data/test-unit/lib/test/unit/collector/load.rb +0 -144
 - data/test-unit/lib/test/unit/collector/objectspace.rb +0 -34
 - data/test-unit/lib/test/unit/color-scheme.rb +0 -102
 - data/test-unit/lib/test/unit/color.rb +0 -96
 - data/test-unit/lib/test/unit/diff.rb +0 -724
 - data/test-unit/lib/test/unit/error.rb +0 -130
 - data/test-unit/lib/test/unit/exceptionhandler.rb +0 -39
 - data/test-unit/lib/test/unit/failure.rb +0 -136
 - data/test-unit/lib/test/unit/fixture.rb +0 -176
 - data/test-unit/lib/test/unit/notification.rb +0 -129
 - data/test-unit/lib/test/unit/omission.rb +0 -191
 - data/test-unit/lib/test/unit/pending.rb +0 -150
 - data/test-unit/lib/test/unit/priority.rb +0 -180
 - data/test-unit/lib/test/unit/runner/console.rb +0 -52
 - data/test-unit/lib/test/unit/runner/emacs.rb +0 -8
 - data/test-unit/lib/test/unit/runner/tap.rb +0 -8
 - data/test-unit/lib/test/unit/testcase.rb +0 -476
 - data/test-unit/lib/test/unit/testresult.rb +0 -89
 - data/test-unit/lib/test/unit/testsuite.rb +0 -110
 - data/test-unit/lib/test/unit/ui/console/outputlevel.rb +0 -14
 - data/test-unit/lib/test/unit/ui/console/testrunner.rb +0 -466
 - data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +0 -63
 - data/test-unit/lib/test/unit/ui/tap/testrunner.rb +0 -92
 - data/test-unit/lib/test/unit/ui/testrunner.rb +0 -28
 - data/test-unit/lib/test/unit/ui/testrunnermediator.rb +0 -77
 - data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +0 -41
 - data/test-unit/lib/test/unit/util/backtracefilter.rb +0 -41
 - data/test-unit/lib/test/unit/util/method-owner-finder.rb +0 -28
 - data/test-unit/lib/test/unit/util/observable.rb +0 -90
 - data/test-unit/lib/test/unit/util/procwrapper.rb +0 -48
 - data/test-unit/lib/test/unit/version.rb +0 -7
 - data/test-unit/sample/adder.rb +0 -13
 - data/test-unit/sample/subtracter.rb +0 -12
 - data/test-unit/sample/test_adder.rb +0 -20
 - data/test-unit/sample/test_subtracter.rb +0 -20
 - data/test-unit/sample/test_user.rb +0 -23
 - data/test-unit/test/collector/test-descendant.rb +0 -133
 - data/test-unit/test/collector/test-load.rb +0 -442
 - data/test-unit/test/collector/test_dir.rb +0 -406
 - data/test-unit/test/collector/test_objectspace.rb +0 -100
 - data/test-unit/test/run-test.rb +0 -15
 - data/test-unit/test/test-attribute.rb +0 -86
 - data/test-unit/test/test-color-scheme.rb +0 -67
 - data/test-unit/test/test-color.rb +0 -47
 - data/test-unit/test/test-diff.rb +0 -518
 - data/test-unit/test/test-emacs-runner.rb +0 -60
 - data/test-unit/test/test-fixture.rb +0 -287
 - data/test-unit/test/test-notification.rb +0 -33
 - data/test-unit/test/test-omission.rb +0 -81
 - data/test-unit/test/test-pending.rb +0 -70
 - data/test-unit/test/test-priority.rb +0 -119
 - data/test-unit/test/test-testcase.rb +0 -544
 - data/test-unit/test/test_assertions.rb +0 -1151
 - data/test-unit/test/test_error.rb +0 -26
 - data/test-unit/test/test_failure.rb +0 -33
 - data/test-unit/test/test_testresult.rb +0 -113
 - data/test-unit/test/test_testsuite.rb +0 -129
 - data/test-unit/test/testunit-test-util.rb +0 -14
 - data/test-unit/test/ui/test_testrunmediator.rb +0 -20
 - data/test-unit/test/util/test-method-owner-finder.rb +0 -38
 - data/test-unit/test/util/test_backtracefilter.rb +0 -41
 - data/test-unit/test/util/test_observable.rb +0 -102
 - data/test-unit/test/util/test_procwrapper.rb +0 -36
 - data/vendor/local/lib/groonga/modules/functions/cast.dll +0 -0
 
    
        data/ext/groonga/rb-grn-table.c
    CHANGED
    
    | 
         @@ -686,8 +686,8 @@ rb_grn_table_open_grn_cursor (int argc, VALUE *argv, VALUE self, 
     | 
|
| 
       686 
686 
     | 
    
         
             
                unsigned min_key_size = 0, max_key_size = 0;
         
     | 
| 
       687 
687 
     | 
    
         
             
                int offset = 0, limit = -1;
         
     | 
| 
       688 
688 
     | 
    
         
             
                int flags = 0;
         
     | 
| 
       689 
     | 
    
         
            -
                VALUE options, rb_min, rb_max, rb_order,  
     | 
| 
       690 
     | 
    
         
            -
                VALUE rb_offset, rb_limit;
         
     | 
| 
      
 689 
     | 
    
         
            +
                VALUE options, rb_min, rb_max, rb_order, rb_order_by;
         
     | 
| 
      
 690 
     | 
    
         
            +
                VALUE rb_greater_than, rb_less_than, rb_offset, rb_limit;
         
     | 
| 
       691 
691 
     | 
    
         | 
| 
       692 
692 
     | 
    
         
             
                rb_grn_table_deconstruct(SELF(self), &table, context,
         
     | 
| 
       693 
693 
     | 
    
         
             
            			     NULL, NULL,
         
     | 
| 
         @@ -702,6 +702,7 @@ rb_grn_table_open_grn_cursor (int argc, VALUE *argv, VALUE self, 
     | 
|
| 
       702 
702 
     | 
    
         
             
                                    "offset", &rb_offset,
         
     | 
| 
       703 
703 
     | 
    
         
             
                                    "limit", &rb_limit,
         
     | 
| 
       704 
704 
     | 
    
         
             
            			"order", &rb_order,
         
     | 
| 
      
 705 
     | 
    
         
            +
            			"order_by", &rb_order_by,
         
     | 
| 
       705 
706 
     | 
    
         
             
            			"greater_than", &rb_greater_than,
         
     | 
| 
       706 
707 
     | 
    
         
             
            			"less_than", &rb_less_than,
         
     | 
| 
       707 
708 
     | 
    
         
             
            			NULL);
         
     | 
| 
         @@ -732,6 +733,28 @@ rb_grn_table_open_grn_cursor (int argc, VALUE *argv, VALUE self, 
     | 
|
| 
       732 
733 
     | 
    
         
             
            		 "[:asc, :ascending, :desc, :descending]: %s",
         
     | 
| 
       733 
734 
     | 
    
         
             
            		 rb_grn_inspect(rb_order));
         
     | 
| 
       734 
735 
     | 
    
         
             
                }
         
     | 
| 
      
 736 
     | 
    
         
            +
                if (NIL_P(rb_order_by)) {
         
     | 
| 
      
 737 
     | 
    
         
            +
            	if (table->header.type == GRN_TABLE_PAT_KEY) {
         
     | 
| 
      
 738 
     | 
    
         
            +
            	    flags |= GRN_CURSOR_BY_KEY;
         
     | 
| 
      
 739 
     | 
    
         
            +
            	} else {
         
     | 
| 
      
 740 
     | 
    
         
            +
            	    flags |= GRN_CURSOR_BY_ID;
         
     | 
| 
      
 741 
     | 
    
         
            +
            	}
         
     | 
| 
      
 742 
     | 
    
         
            +
                } else if (rb_grn_equal_option(rb_order_by, "id")) {
         
     | 
| 
      
 743 
     | 
    
         
            +
            	flags |= GRN_CURSOR_BY_ID;
         
     | 
| 
      
 744 
     | 
    
         
            +
                } else if (rb_grn_equal_option(rb_order_by, "key")) {
         
     | 
| 
      
 745 
     | 
    
         
            +
            	if (table->header.type != GRN_TABLE_PAT_KEY) {
         
     | 
| 
      
 746 
     | 
    
         
            +
            	    rb_raise(rb_eArgError,
         
     | 
| 
      
 747 
     | 
    
         
            +
            		     "order_by => :key is available "
         
     | 
| 
      
 748 
     | 
    
         
            +
            		     "only for Groonga::PatriciaTrie: %s",
         
     | 
| 
      
 749 
     | 
    
         
            +
            		     rb_grn_inspect(self));
         
     | 
| 
      
 750 
     | 
    
         
            +
            	}
         
     | 
| 
      
 751 
     | 
    
         
            +
            	flags |= GRN_CURSOR_BY_KEY;
         
     | 
| 
      
 752 
     | 
    
         
            +
                } else {
         
     | 
| 
      
 753 
     | 
    
         
            +
            	rb_raise(rb_eArgError,
         
     | 
| 
      
 754 
     | 
    
         
            +
            		 "order_by should be one of [:id%s]: %s",
         
     | 
| 
      
 755 
     | 
    
         
            +
            		 table->header.type == GRN_TABLE_PAT_KEY ? ", :key" : "",
         
     | 
| 
      
 756 
     | 
    
         
            +
            		 rb_grn_inspect(rb_order_by));
         
     | 
| 
      
 757 
     | 
    
         
            +
                }
         
     | 
| 
       735 
758 
     | 
    
         | 
| 
       736 
759 
     | 
    
         
             
                if (RVAL2CBOOL(rb_greater_than))
         
     | 
| 
       737 
760 
     | 
    
         
             
            	flags |= GRN_CURSOR_GT;
         
     | 
| 
         @@ -779,6 +802,14 @@ rb_grn_table_open_grn_cursor (int argc, VALUE *argv, VALUE self, 
     | 
|
| 
       779 
802 
     | 
    
         
             
             *   +:desc+または+:descending+を指定すると降順にレコードを
         
     | 
| 
       780 
803 
     | 
    
         
             
             *   取り出す。
         
     | 
| 
       781 
804 
     | 
    
         
             
             *
         
     | 
| 
      
 805 
     | 
    
         
            +
             * [+:order_by+]
         
     | 
| 
      
 806 
     | 
    
         
            +
             *   +:id+を指定するとID順にレコードを取り出す。(Arrayと
         
     | 
| 
      
 807 
     | 
    
         
            +
             *   Hashのデフォルト)
         
     | 
| 
      
 808 
     | 
    
         
            +
             *
         
     | 
| 
      
 809 
     | 
    
         
            +
             *   +:key+指定するとキー順にレコードを取り出す。ただし、
         
     | 
| 
      
 810 
     | 
    
         
            +
             *   Groonga::PatriciaTrieにしか使えない。(PatriciaTrieのデ
         
     | 
| 
      
 811 
     | 
    
         
            +
             *   フォルト)
         
     | 
| 
      
 812 
     | 
    
         
            +
             *
         
     | 
| 
       782 
813 
     | 
    
         
             
             * [+:greater_than+]
         
     | 
| 
       783 
814 
     | 
    
         
             
             *   +true+を指定すると+:min+で指定した値に一致した[+key+]を
         
     | 
| 
       784 
815 
     | 
    
         
             
             *   範囲に含まない。
         
     | 
    
        data/ext/groonga/rb-grn.h
    CHANGED
    
    | 
         @@ -67,9 +67,9 @@ RB_GRN_BEGIN_DECLS 
     | 
|
| 
       67 
67 
     | 
    
         
             
            #  define debug(...)
         
     | 
| 
       68 
68 
     | 
    
         
             
            #endif
         
     | 
| 
       69 
69 
     | 
    
         | 
| 
       70 
     | 
    
         
            -
            #define RB_GRN_MAJOR_VERSION  
     | 
| 
       71 
     | 
    
         
            -
            #define RB_GRN_MINOR_VERSION  
     | 
| 
       72 
     | 
    
         
            -
            #define RB_GRN_MICRO_VERSION  
     | 
| 
      
 70 
     | 
    
         
            +
            #define RB_GRN_MAJOR_VERSION 1
         
     | 
| 
      
 71 
     | 
    
         
            +
            #define RB_GRN_MINOR_VERSION 0
         
     | 
| 
      
 72 
     | 
    
         
            +
            #define RB_GRN_MICRO_VERSION 2
         
     | 
| 
       73 
73 
     | 
    
         | 
| 
       74 
74 
     | 
    
         
             
            typedef int rb_grn_boolean;
         
     | 
| 
       75 
75 
     | 
    
         
             
            #define RB_GRN_FALSE (0)
         
     | 
    
        data/html/index.html
    CHANGED
    
    
    
        data/lib/1.8/groonga.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/1.9/groonga.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/groonga/record.rb
    CHANGED
    
    | 
         @@ -44,13 +44,31 @@ module Groonga 
     | 
|
| 
       44 
44 
     | 
    
         
             
                # call-seq:
         
     | 
| 
       45 
45 
     | 
    
         
             
                #   record == other -> true/false
         
     | 
| 
       46 
46 
     | 
    
         
             
                #
         
     | 
| 
       47 
     | 
    
         
            -
                # _record_と_other_ 
     | 
| 
       48 
     | 
    
         
            -
                #  
     | 
| 
      
 47 
     | 
    
         
            +
                # _record_と_other_が同じテーブルに属していて、さらに、
         
     | 
| 
      
 48 
     | 
    
         
            +
                # 同じレコードIDを持つなら+true+を返し、そうでなければ
         
     | 
| 
      
 49 
     | 
    
         
            +
                # +false+を返す。
         
     | 
| 
       49 
50 
     | 
    
         
             
                def ==(other)
         
     | 
| 
       50 
51 
     | 
    
         
             
                  self.class == other.class and
         
     | 
| 
       51 
52 
     | 
    
         
             
                    [table, id] == [other.table, other.id]
         
     | 
| 
       52 
53 
     | 
    
         
             
                end
         
     | 
| 
       53 
54 
     | 
    
         | 
| 
      
 55 
     | 
    
         
            +
                # call-seq:
         
     | 
| 
      
 56 
     | 
    
         
            +
                #   record.eql?(other) -> true/false
         
     | 
| 
      
 57 
     | 
    
         
            +
                #
         
     | 
| 
      
 58 
     | 
    
         
            +
                # Groonga::Record#==と同じ。
         
     | 
| 
      
 59 
     | 
    
         
            +
                def eql?(other)
         
     | 
| 
      
 60 
     | 
    
         
            +
                  self == other
         
     | 
| 
      
 61 
     | 
    
         
            +
                end
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
                # call-seq:
         
     | 
| 
      
 64 
     | 
    
         
            +
                #   record.hash -> ハッシュ値
         
     | 
| 
      
 65 
     | 
    
         
            +
                #
         
     | 
| 
      
 66 
     | 
    
         
            +
                # 同じテーブルの同じIDのレコードに対しては常に同じハッシュ
         
     | 
| 
      
 67 
     | 
    
         
            +
                # 値を返す。
         
     | 
| 
      
 68 
     | 
    
         
            +
                def hash
         
     | 
| 
      
 69 
     | 
    
         
            +
                  @table.hash ^ @id.hash
         
     | 
| 
      
 70 
     | 
    
         
            +
                end
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
       54 
72 
     | 
    
         
             
                # call-seq:
         
     | 
| 
       55 
73 
     | 
    
         
             
                #   record[column_name] -> 値
         
     | 
| 
       56 
74 
     | 
    
         
             
                #
         
     | 
| 
         @@ -144,10 +162,22 @@ module Groonga 
     | 
|
| 
       144 
162 
     | 
    
         
             
                #
         
     | 
| 
       145 
163 
     | 
    
         
             
                # 主キーの値が同一であったレコードの件数を返す。検索結果とし
         
     | 
| 
       146 
164 
     | 
    
         
             
                # て生成されたテーブルのみに定義される。
         
     | 
| 
      
 165 
     | 
    
         
            +
                #
         
     | 
| 
      
 166 
     | 
    
         
            +
                # Groonga::Record#support_sub_recordsでこの値を利用でき
         
     | 
| 
      
 167 
     | 
    
         
            +
                # るかがわかる。
         
     | 
| 
       147 
168 
     | 
    
         
             
                def n_sub_records
         
     | 
| 
       148 
169 
     | 
    
         
             
                  self["._nsubrecs"]
         
     | 
| 
       149 
170 
     | 
    
         
             
                end
         
     | 
| 
       150 
171 
     | 
    
         | 
| 
      
 172 
     | 
    
         
            +
                # call-seq:
         
     | 
| 
      
 173 
     | 
    
         
            +
                #   record.support_sub_records? -> true/false
         
     | 
| 
      
 174 
     | 
    
         
            +
                #
         
     | 
| 
      
 175 
     | 
    
         
            +
                # Groonga::Record#n_sub_recordsが利用できる場合はtrueを
         
     | 
| 
      
 176 
     | 
    
         
            +
                # 返す。
         
     | 
| 
      
 177 
     | 
    
         
            +
                def support_sub_records?
         
     | 
| 
      
 178 
     | 
    
         
            +
                  @table.support_sub_records?
         
     | 
| 
      
 179 
     | 
    
         
            +
                end
         
     | 
| 
      
 180 
     | 
    
         
            +
             
     | 
| 
       151 
181 
     | 
    
         
             
                # call-seq:
         
     | 
| 
       152 
182 
     | 
    
         
             
                #   record.value -> 値
         
     | 
| 
       153 
183 
     | 
    
         
             
                #
         
     | 
    
        data/lib/groonga/schema.rb
    CHANGED
    
    | 
         @@ -1212,7 +1212,7 @@ module Groonga 
     | 
|
| 
       1212 
1212 
     | 
    
         
             
                    # TODO: should check column type and other options.
         
     | 
| 
       1213 
1213 
     | 
    
         
             
                    return false if index.range.name != @target_table
         
     | 
| 
       1214 
1214 
     | 
    
         
             
                    source_names = index.sources.collect do |source|
         
     | 
| 
       1215 
     | 
    
         
            -
                      if source 
     | 
| 
      
 1215 
     | 
    
         
            +
                      if source == index
         
     | 
| 
       1216 
1216 
     | 
    
         
             
                        "#{index.range.name}._key"
         
     | 
| 
       1217 
1217 
     | 
    
         
             
                      else
         
     | 
| 
       1218 
1218 
     | 
    
         
             
                        source.name
         
     | 
    
        data/rroonga-build.rb
    CHANGED
    
    
    
        data/test/test-patricia-trie.rb
    CHANGED
    
    | 
         @@ -57,7 +57,7 @@ class PatriciaTrieTest < Test::Unit::TestCase 
     | 
|
| 
       57 
57 
     | 
    
         | 
| 
       58 
58 
     | 
    
         
             
              def test_add
         
     | 
| 
       59 
59 
     | 
    
         
             
                users = Groonga::PatriciaTrie.create(:name => "Users")
         
     | 
| 
       60 
     | 
    
         
            -
                users.define_column("address", " 
     | 
| 
      
 60 
     | 
    
         
            +
                users.define_column("address", "Text")
         
     | 
| 
       61 
61 
     | 
    
         
             
                me = users.add("me", :address => "me@example.com")
         
     | 
| 
       62 
62 
     | 
    
         
             
                assert_equal("me@example.com", me[:address])
         
     | 
| 
       63 
63 
     | 
    
         
             
              end
         
     | 
| 
         @@ -202,4 +202,175 @@ class PatriciaTrieTest < Test::Unit::TestCase 
     | 
|
| 
       202 
202 
     | 
    
         
             
                assert_equal([],
         
     | 
| 
       203 
203 
     | 
    
         
             
                             records.records.collect {|record| record["._key"]})
         
     | 
| 
       204 
204 
     | 
    
         
             
              end
         
     | 
| 
      
 205 
     | 
    
         
            +
             
     | 
| 
      
 206 
     | 
    
         
            +
             
     | 
| 
      
 207 
     | 
    
         
            +
              def test_prefix_cursor
         
     | 
| 
      
 208 
     | 
    
         
            +
                paths = Groonga::PatriciaTrie.create(:name => "Paths",
         
     | 
| 
      
 209 
     | 
    
         
            +
                                                     :key_type => 'ShortText')
         
     | 
| 
      
 210 
     | 
    
         
            +
                root_path = paths.add('/')
         
     | 
| 
      
 211 
     | 
    
         
            +
                tmp_path = paths.add('/tmp')
         
     | 
| 
      
 212 
     | 
    
         
            +
                usr_bin_path = paths.add('/usr/bin')
         
     | 
| 
      
 213 
     | 
    
         
            +
                usr_local_bin_path = paths.add('/usr/local/bin')
         
     | 
| 
      
 214 
     | 
    
         
            +
             
     | 
| 
      
 215 
     | 
    
         
            +
                assert_prefix_cursor(["/usr/local/bin", "/usr/bin", "/tmp", "/"],
         
     | 
| 
      
 216 
     | 
    
         
            +
                                     paths, "/", {:order => :desc})
         
     | 
| 
      
 217 
     | 
    
         
            +
                assert_prefix_cursor(["/", "/tmp", "/usr/bin", "/usr/local/bin"],
         
     | 
| 
      
 218 
     | 
    
         
            +
                                     paths, "/")
         
     | 
| 
      
 219 
     | 
    
         
            +
                assert_prefix_cursor(["/usr/local/bin", "/usr/bin"],
         
     | 
| 
      
 220 
     | 
    
         
            +
                                     paths, "/usr/local",
         
     | 
| 
      
 221 
     | 
    
         
            +
                                     {:key_bytes => "/usr".size, :order => :desc})
         
     | 
| 
      
 222 
     | 
    
         
            +
                assert_prefix_cursor(["/tmp", "/usr/bin"],
         
     | 
| 
      
 223 
     | 
    
         
            +
                                     paths, "/",
         
     | 
| 
      
 224 
     | 
    
         
            +
                                     {:offset => 1, :limit => 2})
         
     | 
| 
      
 225 
     | 
    
         
            +
              end
         
     | 
| 
      
 226 
     | 
    
         
            +
             
     | 
| 
      
 227 
     | 
    
         
            +
              def assert_prefix_cursor(expected, tables, prefix, options={})
         
     | 
| 
      
 228 
     | 
    
         
            +
                actual = []
         
     | 
| 
      
 229 
     | 
    
         
            +
                tables.open_prefix_cursor(prefix, options) do |cursor|
         
     | 
| 
      
 230 
     | 
    
         
            +
                  cursor.each do |record|
         
     | 
| 
      
 231 
     | 
    
         
            +
                    actual << record.key
         
     | 
| 
      
 232 
     | 
    
         
            +
                  end
         
     | 
| 
      
 233 
     | 
    
         
            +
                end
         
     | 
| 
      
 234 
     | 
    
         
            +
                assert_equal(expected, actual)
         
     | 
| 
      
 235 
     | 
    
         
            +
              end
         
     | 
| 
      
 236 
     | 
    
         
            +
             
     | 
| 
      
 237 
     | 
    
         
            +
              def test_rk_cursor
         
     | 
| 
      
 238 
     | 
    
         
            +
                terms = Groonga::PatriciaTrie.create(:name => "Terms",
         
     | 
| 
      
 239 
     | 
    
         
            +
                                                     :key_type => 'ShortText')
         
     | 
| 
      
 240 
     | 
    
         
            +
                ["インデックス",
         
     | 
| 
      
 241 
     | 
    
         
            +
                 "エヌグラム",
         
     | 
| 
      
 242 
     | 
    
         
            +
                 "エンジン",
         
     | 
| 
      
 243 
     | 
    
         
            +
                 "カネソナエタ",
         
     | 
| 
      
 244 
     | 
    
         
            +
                 "カノウ",
         
     | 
| 
      
 245 
     | 
    
         
            +
                 "キノウ",
         
     | 
| 
      
 246 
     | 
    
         
            +
                 "キョウカ",
         
     | 
| 
      
 247 
     | 
    
         
            +
                 "クミコミ",
         
     | 
| 
      
 248 
     | 
    
         
            +
                 "クミコム",
         
     | 
| 
      
 249 
     | 
    
         
            +
                 "グルンガ",
         
     | 
| 
      
 250 
     | 
    
         
            +
                 "ケンサク",
         
     | 
| 
      
 251 
     | 
    
         
            +
                 "ケンサクヨウキュウ",
         
     | 
| 
      
 252 
     | 
    
         
            +
                 "ゲンゴ",
         
     | 
| 
      
 253 
     | 
    
         
            +
                 "コウセイド",
         
     | 
| 
      
 254 
     | 
    
         
            +
                 "コウソク",
         
     | 
| 
      
 255 
     | 
    
         
            +
                 "コンパクト",
         
     | 
| 
      
 256 
     | 
    
         
            +
                 "サクセイ",
         
     | 
| 
      
 257 
     | 
    
         
            +
                 "ショリ",
         
     | 
| 
      
 258 
     | 
    
         
            +
                 "ショリケイ",
         
     | 
| 
      
 259 
     | 
    
         
            +
                 "ジッソウ",
         
     | 
| 
      
 260 
     | 
    
         
            +
                 "ジュンスイ",
         
     | 
| 
      
 261 
     | 
    
         
            +
                 "スクリプト",
         
     | 
| 
      
 262 
     | 
    
         
            +
                 "セッケイ",
         
     | 
| 
      
 263 
     | 
    
         
            +
                 "ゼンブン",
         
     | 
| 
      
 264 
     | 
    
         
            +
                 "タイプ",
         
     | 
| 
      
 265 
     | 
    
         
            +
                 "タンゴ",
         
     | 
| 
      
 266 
     | 
    
         
            +
                 "ダイキボ",
         
     | 
| 
      
 267 
     | 
    
         
            +
                 "テンチ",
         
     | 
| 
      
 268 
     | 
    
         
            +
                 "ディービーエムエス",
         
     | 
| 
      
 269 
     | 
    
         
            +
                 "トウ",
         
     | 
| 
      
 270 
     | 
    
         
            +
                 "トクチョウ",
         
     | 
| 
      
 271 
     | 
    
         
            +
                 "ブンショリョウ",
         
     | 
| 
      
 272 
     | 
    
         
            +
                 "ヨウキュウ"].each do |term|
         
     | 
| 
      
 273 
     | 
    
         
            +
                  terms.add(term)
         
     | 
| 
      
 274 
     | 
    
         
            +
                end
         
     | 
| 
      
 275 
     | 
    
         
            +
             
     | 
| 
      
 276 
     | 
    
         
            +
                assert_rk_cursor(["カネソナエタ",
         
     | 
| 
      
 277 
     | 
    
         
            +
                                  "カノウ",
         
     | 
| 
      
 278 
     | 
    
         
            +
                                  "キノウ",
         
     | 
| 
      
 279 
     | 
    
         
            +
                                  "キョウカ",
         
     | 
| 
      
 280 
     | 
    
         
            +
                                  "クミコミ",
         
     | 
| 
      
 281 
     | 
    
         
            +
                                  "クミコム",
         
     | 
| 
      
 282 
     | 
    
         
            +
                                  "ケンサク",
         
     | 
| 
      
 283 
     | 
    
         
            +
                                  "ケンサクヨウキュウ",
         
     | 
| 
      
 284 
     | 
    
         
            +
                                  "コウセイド",
         
     | 
| 
      
 285 
     | 
    
         
            +
                                  "コウソク",
         
     | 
| 
      
 286 
     | 
    
         
            +
                                  "コンパクト"],
         
     | 
| 
      
 287 
     | 
    
         
            +
                                 terms, "k")
         
     | 
| 
      
 288 
     | 
    
         
            +
              end
         
     | 
| 
      
 289 
     | 
    
         
            +
             
     | 
| 
      
 290 
     | 
    
         
            +
              def assert_rk_cursor(expected, tables, prefix, options={})
         
     | 
| 
      
 291 
     | 
    
         
            +
                actual = []
         
     | 
| 
      
 292 
     | 
    
         
            +
                tables.open_rk_cursor(prefix, options) do |cursor|
         
     | 
| 
      
 293 
     | 
    
         
            +
                  cursor.each do |record|
         
     | 
| 
      
 294 
     | 
    
         
            +
                    actual << record.key
         
     | 
| 
      
 295 
     | 
    
         
            +
                  end
         
     | 
| 
      
 296 
     | 
    
         
            +
                end
         
     | 
| 
      
 297 
     | 
    
         
            +
                assert_equal(expected, actual.sort)
         
     | 
| 
      
 298 
     | 
    
         
            +
              end
         
     | 
| 
      
 299 
     | 
    
         
            +
             
     | 
| 
      
 300 
     | 
    
         
            +
              def test_near_cursor
         
     | 
| 
      
 301 
     | 
    
         
            +
                points = Groonga::PatriciaTrie.create(:name => "Points",
         
     | 
| 
      
 302 
     | 
    
         
            +
                                                      :key_type => 'WGS84GeoPoint')
         
     | 
| 
      
 303 
     | 
    
         
            +
                ["130322053x504985073",
         
     | 
| 
      
 304 
     | 
    
         
            +
                 "130285021x504715091",
         
     | 
| 
      
 305 
     | 
    
         
            +
                 "130117012x504390088",
         
     | 
| 
      
 306 
     | 
    
         
            +
                 "130335016x504662007",
         
     | 
| 
      
 307 
     | 
    
         
            +
                 "130308044x504536008",
         
     | 
| 
      
 308 
     | 
    
         
            +
                 "130306053x504530043",
         
     | 
| 
      
 309 
     | 
    
         
            +
                 "130205016x505331054",
         
     | 
| 
      
 310 
     | 
    
         
            +
                 "130222054x505270050",
         
     | 
| 
      
 311 
     | 
    
         
            +
                 "130255017x504266011",
         
     | 
| 
      
 312 
     | 
    
         
            +
                 "130239038x504251015",
         
     | 
| 
      
 313 
     | 
    
         
            +
                 "129885039x503653023",
         
     | 
| 
      
 314 
     | 
    
         
            +
                 "129809022x504597055",
         
     | 
| 
      
 315 
     | 
    
         
            +
                 "130015001x504266057",
         
     | 
| 
      
 316 
     | 
    
         
            +
                 "130089012x505045070",
         
     | 
| 
      
 317 
     | 
    
         
            +
                 "130208017x504315098",
         
     | 
| 
      
 318 
     | 
    
         
            +
                 "130347036x504325073",
         
     | 
| 
      
 319 
     | 
    
         
            +
                 "130380061x505202034",
         
     | 
| 
      
 320 
     | 
    
         
            +
                 "129903045x504648034",
         
     | 
| 
      
 321 
     | 
    
         
            +
                 "130094061x505025099",
         
     | 
| 
      
 322 
     | 
    
         
            +
                 "130133052x505120058",
         
     | 
| 
      
 323 
     | 
    
         
            +
                 "130329069x505188046",
         
     | 
| 
      
 324 
     | 
    
         
            +
                 "130226001x503769013",
         
     | 
| 
      
 325 
     | 
    
         
            +
                 "129866001x504328017",
         
     | 
| 
      
 326 
     | 
    
         
            +
                 "129786048x504792049",
         
     | 
| 
      
 327 
     | 
    
         
            +
                 "129845056x504853081",
         
     | 
| 
      
 328 
     | 
    
         
            +
                 "130055008x504968095",
         
     | 
| 
      
 329 
     | 
    
         
            +
                 "130086003x504480071",
         
     | 
| 
      
 330 
     | 
    
         
            +
                 "129680021x504441006",
         
     | 
| 
      
 331 
     | 
    
         
            +
                 "129855010x504452003",
         
     | 
| 
      
 332 
     | 
    
         
            +
                 "130280013x505208029",
         
     | 
| 
      
 333 
     | 
    
         
            +
                 "129721099x504685024",
         
     | 
| 
      
 334 
     | 
    
         
            +
                 "129690039x504418033",
         
     | 
| 
      
 335 
     | 
    
         
            +
                 "130019020x505027021",
         
     | 
| 
      
 336 
     | 
    
         
            +
                 "130046026x505082073",
         
     | 
| 
      
 337 
     | 
    
         
            +
                 "130038025x505066028",
         
     | 
| 
      
 338 
     | 
    
         
            +
                 "129917001x504675017"].each do |point|
         
     | 
| 
      
 339 
     | 
    
         
            +
                  points.add(point)
         
     | 
| 
      
 340 
     | 
    
         
            +
                end
         
     | 
| 
      
 341 
     | 
    
         
            +
             
     | 
| 
      
 342 
     | 
    
         
            +
                assert_near_cursor(["129680021x504441006",
         
     | 
| 
      
 343 
     | 
    
         
            +
                                    "129690039x504418033",
         
     | 
| 
      
 344 
     | 
    
         
            +
                                    "129721099x504685024",
         
     | 
| 
      
 345 
     | 
    
         
            +
                                    "129786048x504792049",
         
     | 
| 
      
 346 
     | 
    
         
            +
                                    "129809022x504597055",
         
     | 
| 
      
 347 
     | 
    
         
            +
                                    "129845056x504853081",
         
     | 
| 
      
 348 
     | 
    
         
            +
                                    "129855010x504452003",
         
     | 
| 
      
 349 
     | 
    
         
            +
                                    "129866001x504328017",
         
     | 
| 
      
 350 
     | 
    
         
            +
                                    "129885039x503653023",
         
     | 
| 
      
 351 
     | 
    
         
            +
                                    "129903045x504648034"],
         
     | 
| 
      
 352 
     | 
    
         
            +
                                   points,
         
     | 
| 
      
 353 
     | 
    
         
            +
                                   "129786048x504792049",
         
     | 
| 
      
 354 
     | 
    
         
            +
                                   {:limit => 10})
         
     | 
| 
      
 355 
     | 
    
         
            +
              end
         
     | 
| 
      
 356 
     | 
    
         
            +
             
     | 
| 
      
 357 
     | 
    
         
            +
              def assert_near_cursor(expected, tables, prefix, options={})
         
     | 
| 
      
 358 
     | 
    
         
            +
                actual = []
         
     | 
| 
      
 359 
     | 
    
         
            +
                tables.open_near_cursor(prefix, options) do |cursor|
         
     | 
| 
      
 360 
     | 
    
         
            +
                  cursor.each do |record|
         
     | 
| 
      
 361 
     | 
    
         
            +
                    actual << record.key
         
     | 
| 
      
 362 
     | 
    
         
            +
                  end
         
     | 
| 
      
 363 
     | 
    
         
            +
                end
         
     | 
| 
      
 364 
     | 
    
         
            +
                assert_equal(expected, actual)
         
     | 
| 
      
 365 
     | 
    
         
            +
              end
         
     | 
| 
      
 366 
     | 
    
         
            +
             
     | 
| 
      
 367 
     | 
    
         
            +
              def test_add_uint_key
         
     | 
| 
      
 368 
     | 
    
         
            +
                numbers = Groonga::PatriciaTrie.create(:name => "Numbers",
         
     | 
| 
      
 369 
     | 
    
         
            +
                                                       :key_type => "UInt32")
         
     | 
| 
      
 370 
     | 
    
         
            +
                numbers.add(1)
         
     | 
| 
      
 371 
     | 
    
         
            +
                numbers.add(2)
         
     | 
| 
      
 372 
     | 
    
         
            +
                numbers.add(5)
         
     | 
| 
      
 373 
     | 
    
         
            +
                numbers.add(7)
         
     | 
| 
      
 374 
     | 
    
         
            +
                assert_equal([1, 2, 5, 7], numbers.collect {|number| number.key})
         
     | 
| 
      
 375 
     | 
    
         
            +
              end
         
     | 
| 
       205 
376 
     | 
    
         
             
            end
         
     | 
    
        data/test/test-record.rb
    CHANGED
    
    | 
         @@ -268,4 +268,11 @@ class RecordTest < Test::Unit::TestCase 
     | 
|
| 
       268 
268 
     | 
    
         
             
                groonga = @bookmarks.add(:user => morita, :uri => "http://groonga.org")
         
     | 
| 
       269 
269 
     | 
    
         
             
                assert_equal("morita", groonga.user.key)
         
     | 
| 
       270 
270 
     | 
    
         
             
              end
         
     | 
| 
      
 271 
     | 
    
         
            +
             
     | 
| 
      
 272 
     | 
    
         
            +
              def test_support_sub_records
         
     | 
| 
      
 273 
     | 
    
         
            +
                morita = @users.add("morita")
         
     | 
| 
      
 274 
     | 
    
         
            +
                assert_not_predicate(morita, :support_sub_records?)
         
     | 
| 
      
 275 
     | 
    
         
            +
                users = @users.select {|record| record.key == "morita"}
         
     | 
| 
      
 276 
     | 
    
         
            +
                assert_predicate(users.to_a[0], :support_sub_records?)
         
     | 
| 
      
 277 
     | 
    
         
            +
              end
         
     | 
| 
       271 
278 
     | 
    
         
             
            end
         
     | 
    
        data/test/test-remote.rb
    CHANGED
    
    | 
         @@ -47,7 +47,8 @@ class RemoteTest < Test::Unit::TestCase 
     | 
|
| 
       47 
47 
     | 
    
         
             
                id, result = _context.receive
         
     | 
| 
       48 
48 
     | 
    
         
             
                assert_equal(0, id)
         
     | 
| 
       49 
49 
     | 
    
         
             
                values = JSON.load(result)
         
     | 
| 
       50 
     | 
    
         
            -
                assert_equal(["alloc_count", " 
     | 
| 
      
 50 
     | 
    
         
            +
                assert_equal(["alloc_count", "cache_hit_rate", "n_queries",
         
     | 
| 
      
 51 
     | 
    
         
            +
                              "starttime", "uptime", "version"],
         
     | 
| 
       51 
52 
     | 
    
         
             
                             values.keys.sort)
         
     | 
| 
       52 
53 
     | 
    
         
             
              end
         
     | 
| 
       53 
54 
     | 
    
         | 
    
        data/test/test-table-cursor.rb
    CHANGED
    
    | 
         @@ -1,4 +1,4 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # Copyright (C) 2009  Kouhei Sutou <kou@clear-code.com>
         
     | 
| 
      
 1 
     | 
    
         
            +
            # Copyright (C) 2009-2010  Kouhei Sutou <kou@clear-code.com>
         
     | 
| 
       2 
2 
     | 
    
         
             
            #
         
     | 
| 
       3 
3 
     | 
    
         
             
            # This library is free software; you can redistribute it and/or
         
     | 
| 
       4 
4 
     | 
    
         
             
            # modify it under the terms of the GNU Lesser General Public
         
     | 
| 
         @@ -136,6 +136,40 @@ class TableCursorTest < Test::Unit::TestCase 
     | 
|
| 
       136 
136 
     | 
    
         
             
                end
         
     | 
| 
       137 
137 
     | 
    
         
             
              end
         
     | 
| 
       138 
138 
     | 
    
         | 
| 
      
 139 
     | 
    
         
            +
              def test_order_by_id
         
     | 
| 
      
 140 
     | 
    
         
            +
                sites = Groonga::PatriciaTrie.create(:name => "Sites")
         
     | 
| 
      
 141 
     | 
    
         
            +
                sites.add("http://qwik.jp/senna/")
         
     | 
| 
      
 142 
     | 
    
         
            +
                sites.add("http://www.ruby-lang.org/")
         
     | 
| 
      
 143 
     | 
    
         
            +
                sites.add("http://groonga.org/")
         
     | 
| 
      
 144 
     | 
    
         
            +
                keys = []
         
     | 
| 
      
 145 
     | 
    
         
            +
                sites.open_cursor(:order_by => :id) do |cursor|
         
     | 
| 
      
 146 
     | 
    
         
            +
                  while cursor.next
         
     | 
| 
      
 147 
     | 
    
         
            +
                    keys << cursor.key
         
     | 
| 
      
 148 
     | 
    
         
            +
                  end
         
     | 
| 
      
 149 
     | 
    
         
            +
                end
         
     | 
| 
      
 150 
     | 
    
         
            +
                assert_equal(["http://qwik.jp/senna/",
         
     | 
| 
      
 151 
     | 
    
         
            +
                              "http://www.ruby-lang.org/",
         
     | 
| 
      
 152 
     | 
    
         
            +
                              "http://groonga.org/"],
         
     | 
| 
      
 153 
     | 
    
         
            +
                             keys)
         
     | 
| 
      
 154 
     | 
    
         
            +
              end
         
     | 
| 
      
 155 
     | 
    
         
            +
             
     | 
| 
      
 156 
     | 
    
         
            +
              def test_order_by_key
         
     | 
| 
      
 157 
     | 
    
         
            +
                sites = Groonga::PatriciaTrie.create(:name => "Sites")
         
     | 
| 
      
 158 
     | 
    
         
            +
                sites.add("http://www.ruby-lang.org/")
         
     | 
| 
      
 159 
     | 
    
         
            +
                sites.add("http://qwik.jp/senna/")
         
     | 
| 
      
 160 
     | 
    
         
            +
                sites.add("http://groonga.org/")
         
     | 
| 
      
 161 
     | 
    
         
            +
                keys = []
         
     | 
| 
      
 162 
     | 
    
         
            +
                sites.open_cursor(:order_by => :key) do |cursor|
         
     | 
| 
      
 163 
     | 
    
         
            +
                  while cursor.next
         
     | 
| 
      
 164 
     | 
    
         
            +
                    keys << cursor.key
         
     | 
| 
      
 165 
     | 
    
         
            +
                  end
         
     | 
| 
      
 166 
     | 
    
         
            +
                end
         
     | 
| 
      
 167 
     | 
    
         
            +
                assert_equal(["http://groonga.org/",
         
     | 
| 
      
 168 
     | 
    
         
            +
                              "http://qwik.jp/senna/",
         
     | 
| 
      
 169 
     | 
    
         
            +
                              "http://www.ruby-lang.org/"],
         
     | 
| 
      
 170 
     | 
    
         
            +
                             keys)
         
     | 
| 
      
 171 
     | 
    
         
            +
              end
         
     | 
| 
      
 172 
     | 
    
         
            +
             
     | 
| 
       139 
173 
     | 
    
         
             
              private
         
     | 
| 
       140 
174 
     | 
    
         
             
              def create_users
         
     | 
| 
       141 
175 
     | 
    
         
             
                users = Groonga::Array.create(:name => "Users")
         
     | 
| 
         @@ -25,11 +25,15 @@ class TableSelectNormalizeTest < Test::Unit::TestCase 
     | 
|
| 
       25 
25 
     | 
    
         
             
                @comments = Groonga::Array.create(:name => "Comments")
         
     | 
| 
       26 
26 
     | 
    
         
             
                @comments.define_column("content", "Text")
         
     | 
| 
       27 
27 
     | 
    
         
             
                @comments.define_column("created_at", "Time")
         
     | 
| 
       28 
     | 
    
         
            -
                 
     | 
| 
       29 
     | 
    
         
            -
             
     | 
| 
       30 
     | 
    
         
            -
             
     | 
| 
      
 28 
     | 
    
         
            +
                options = {
         
     | 
| 
      
 29 
     | 
    
         
            +
                  :name => "Terms",
         
     | 
| 
      
 30 
     | 
    
         
            +
                  :default_tokenizer => "TokenBigramSplitSymbol",
         
     | 
| 
      
 31 
     | 
    
         
            +
                  :key_normalize => true,
         
     | 
| 
      
 32 
     | 
    
         
            +
                }
         
     | 
| 
      
 33 
     | 
    
         
            +
                terms = Groonga::PatriciaTrie.create(options)
         
     | 
| 
       31 
34 
     | 
    
         
             
                terms.define_index_column("comment_content", @comments,
         
     | 
| 
       32 
35 
     | 
    
         
             
                                          :with_section => true,
         
     | 
| 
      
 36 
     | 
    
         
            +
                                          :with_position => true,
         
     | 
| 
       33 
37 
     | 
    
         
             
                                          :source => "Comments.content")
         
     | 
| 
       34 
38 
     | 
    
         
             
                @japanese_comment =
         
     | 
| 
       35 
39 
     | 
    
         
             
                  @comments.add(:content => "うちのボロTV(アナログ...)はまだ現役です",
         
     |