rroonga 1.0.1-x86-mingw32 → 1.1.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/NEWS.ja.rdoc +146 -0
- data/NEWS.rdoc +146 -0
- data/README.ja.rdoc +7 -5
- data/README.rdoc +6 -5
- data/Rakefile +170 -18
- data/benchmark/create-wikipedia-database.rb +212 -0
- data/benchmark/read-write-many-small-items.rb +0 -0
- data/benchmark/repeat-load.rb +213 -0
- data/benchmark/select.rb +1052 -0
- data/benchmark/write-many-small-items.rb +0 -0
- data/example/bookmark.rb +94 -91
- data/example/index-html.rb +0 -0
- data/ext/groonga/extconf.rb +6 -6
- data/ext/groonga/rb-grn-accessor.c +1 -1
- data/ext/groonga/rb-grn-array.c +1 -1
- data/ext/groonga/rb-grn-column.c +201 -10
- data/ext/groonga/rb-grn-context.c +119 -20
- data/ext/groonga/rb-grn-database.c +27 -4
- data/ext/groonga/rb-grn-exception.c +15 -0
- data/ext/groonga/rb-grn-expression.c +14 -10
- data/ext/groonga/rb-grn-hash.c +4 -4
- data/ext/groonga/rb-grn-index-column.c +10 -6
- data/ext/groonga/rb-grn-logger.c +2 -2
- data/ext/groonga/rb-grn-object.c +33 -29
- data/ext/groonga/{rb-grn-operation.c → rb-grn-operator.c} +89 -87
- data/ext/groonga/rb-grn-patricia-trie.c +12 -12
- data/ext/groonga/rb-grn-plugin.c +134 -0
- data/ext/groonga/rb-grn-procedure.c +1 -1
- data/ext/groonga/rb-grn-query.c +7 -7
- data/ext/groonga/rb-grn-snippet.c +4 -3
- data/ext/groonga/rb-grn-table-cursor.c +1 -1
- data/ext/groonga/rb-grn-table-key-support.c +27 -24
- data/ext/groonga/rb-grn-table.c +119 -58
- data/ext/groonga/rb-grn-type.c +1 -1
- data/ext/groonga/rb-grn-utils.c +20 -19
- data/ext/groonga/rb-grn-variable.c +1 -1
- data/ext/groonga/rb-grn-view-accessor.c +1 -1
- data/ext/groonga/rb-grn-view.c +1 -1
- data/ext/groonga/rb-grn.h +26 -20
- data/ext/groonga/rb-groonga.c +6 -4
- data/extconf.rb +10 -4
- data/html/developer.html +8 -2
- data/html/favicon.ico +0 -0
- data/html/favicon.svg +591 -0
- data/html/index.html +78 -12
- data/html/logo.svg +612 -0
- data/html/ranguba.css +92 -7
- data/html/readme.svg +256 -0
- data/lib/groonga.so +0 -0
- data/lib/groonga/context.rb +52 -1
- data/lib/groonga/expression-builder.rb +42 -6
- data/lib/groonga/record.rb +84 -15
- data/lib/groonga/schema.rb +524 -122
- data/pkg/rroonga-1.1.0-x86-mingw32/NEWS.ja.rdoc +326 -0
- data/pkg/rroonga-1.1.0-x86-mingw32/NEWS.rdoc +328 -0
- data/pkg/rroonga-1.1.0-x86-mingw32/README.ja.rdoc +68 -0
- data/pkg/rroonga-1.1.0-x86-mingw32/README.rdoc +68 -0
- data/pkg/rroonga-1.1.0-x86-mingw32/text/expression.rdoc +285 -0
- data/{text/TUTORIAL.ja.rdoc → pkg/rroonga-1.1.0-x86-mingw32/text/tutorial.ja.rdoc} +165 -126
- data/pkg/rroonga-1.1.0/NEWS.ja.rdoc +326 -0
- data/pkg/rroonga-1.1.0/NEWS.rdoc +328 -0
- data/pkg/rroonga-1.1.0/README.ja.rdoc +68 -0
- data/pkg/rroonga-1.1.0/README.rdoc +68 -0
- data/pkg/rroonga-1.1.0/text/expression.rdoc +285 -0
- data/pkg/rroonga-1.1.0/text/tutorial.ja.rdoc +433 -0
- data/rroonga-build.rb +3 -3
- data/test/run-test.rb +1 -1
- data/test/test-array.rb +4 -0
- data/test/test-column.rb +31 -1
- data/test/test-context-select.rb +45 -14
- data/test/test-context.rb +44 -0
- data/test/test-database.rb +21 -1
- data/test/test-expression-builder.rb +46 -5
- data/test/test-fix-size-column.rb +12 -0
- data/test/test-hash.rb +10 -4
- data/test/test-index-column.rb +33 -0
- data/test/test-patricia-trie.rb +6 -0
- data/test/test-plugin.rb +29 -0
- data/test/test-record.rb +84 -1
- data/test/test-remote.rb +3 -2
- data/test/test-schema-create-table.rb +32 -2
- data/test/test-schema-type.rb +167 -0
- data/test/test-schema.rb +159 -12
- data/test/test-table-select-weight.rb +20 -1
- data/test/test-table-select.rb +12 -0
- data/test/test-table.rb +65 -0
- data/test/test-variable-size-column.rb +12 -0
- data/text/tutorial.ja.rdoc +433 -0
- 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/init.d/redhat/groonga +1 -9
- data/vendor/local/include/groonga/groonga.h +156 -6
- data/vendor/local/include/groonga/groonga/plugin.h +44 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/{modules → plugins}/suggest/suggest.la +2 -2
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +1 -1
- data/vendor/local/lib/pkgconfig/groonga.pc +3 -2
- data/vendor/local/share/groonga/examples/dictionary/edict/edict_import.sh +14 -3
- data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro_import.sh +3 -1
- data/vendor/local/share/groonga/examples/dictionary/gene95/gene_import.sh +19 -3
- data/vendor/local/share/groonga/munin/plugins/groonga_cpu_load +0 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_cpu_time +0 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_disk +0 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_memory +0 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_n_records +0 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_query_performance +0 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_status +0 -0
- metadata +91 -341
- data/html/favicon.xcf +0 -0
- data/html/logo.xcf +0 -0
- data/lib/1.8/groonga.so +0 -0
- data/lib/1.9/groonga.so +0 -0
- data/license/GPL +0 -340
- data/license/RUBY +0 -59
- 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/share/groonga/doc/ja/html/.buildinfo +0 -4
- data/vendor/local/share/groonga/doc/ja/html/_sources/characteristic.txt +0 -56
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands.txt +0 -10
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/cache_limit.txt +0 -52
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/check.txt +0 -164
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/clearlock.txt +0 -61
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_create.txt +0 -93
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_list.txt +0 -97
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_remove.txt +0 -58
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/define_selector.txt +0 -114
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/defrag.txt +0 -57
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/delete.txt +0 -68
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/dump.txt +0 -62
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/load.txt +0 -98
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_level.txt +0 -65
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_put.txt +0 -69
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_reopen.txt +0 -66
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/quit.txt +0 -38
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/select.txt +0 -247
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/shutdown.txt +0 -38
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/status.txt +0 -59
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/suggest.txt +0 -79
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_create.txt +0 -111
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_list.txt +0 -87
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_remove.txt +0 -50
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands/view_add.txt +0 -53
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/add.txt +0 -102
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/get.txt +0 -78
- data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/set.txt +0 -103
- data/vendor/local/share/groonga/doc/ja/html/_sources/developer.txt +0 -10
- data/vendor/local/share/groonga/doc/ja/html/_sources/developer/com.txt +0 -18
- data/vendor/local/share/groonga/doc/ja/html/_sources/developer/document.txt +0 -38
- data/vendor/local/share/groonga/doc/ja/html/_sources/developer/query.txt +0 -212
- data/vendor/local/share/groonga/doc/ja/html/_sources/developer/test.txt +0 -114
- data/vendor/local/share/groonga/doc/ja/html/_sources/execfile.txt +0 -226
- data/vendor/local/share/groonga/doc/ja/html/_sources/expr.txt +0 -43
- data/vendor/local/share/groonga/doc/ja/html/_sources/functions.txt +0 -10
- data/vendor/local/share/groonga/doc/ja/html/_sources/functions/edit_distance.txt +0 -48
- data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_distance.txt +0 -51
- data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_in_circle.txt +0 -54
- data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_in_rectangle.txt +0 -55
- data/vendor/local/share/groonga/doc/ja/html/_sources/functions/now.txt +0 -34
- data/vendor/local/share/groonga/doc/ja/html/_sources/functions/rand.txt +0 -41
- data/vendor/local/share/groonga/doc/ja/html/_sources/grnslap.txt +0 -64
- data/vendor/local/share/groonga/doc/ja/html/_sources/grntest.txt +0 -259
- data/vendor/local/share/groonga/doc/ja/html/_sources/http.txt +0 -52
- data/vendor/local/share/groonga/doc/ja/html/_sources/index.txt +0 -21
- data/vendor/local/share/groonga/doc/ja/html/_sources/install.txt +0 -114
- data/vendor/local/share/groonga/doc/ja/html/_sources/news.txt +0 -199
- data/vendor/local/share/groonga/doc/ja/html/_sources/process.txt +0 -12
- data/vendor/local/share/groonga/doc/ja/html/_sources/pseudo_column.txt +0 -38
- data/vendor/local/share/groonga/doc/ja/html/_sources/reference.txt +0 -14
- data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial.txt +0 -10
- data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial01.txt +0 -293
- data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial02.txt +0 -100
- data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial03.txt +0 -72
- data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial04.txt +0 -111
- data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial05.txt +0 -65
- data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial06.txt +0 -91
- data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial07.txt +0 -92
- data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial08.txt +0 -53
- data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial09.txt +0 -9
- data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial10.txt +0 -486
- data/vendor/local/share/groonga/doc/ja/html/_sources/type.txt +0 -118
- data/vendor/local/share/groonga/doc/ja/html/_static/basic.css +0 -509
- data/vendor/local/share/groonga/doc/ja/html/_static/default.css +0 -277
- data/vendor/local/share/groonga/doc/ja/html/_static/doctools.js +0 -247
- data/vendor/local/share/groonga/doc/ja/html/_static/file.png +0 -0
- data/vendor/local/share/groonga/doc/ja/html/_static/jquery.js +0 -6240
- 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 +0 -61
- data/vendor/local/share/groonga/doc/ja/html/_static/searchtools.js +0 -518
- data/vendor/local/share/groonga/doc/ja/html/_static/sidebar.js +0 -147
- data/vendor/local/share/groonga/doc/ja/html/_static/underscore.js +0 -16
- data/vendor/local/share/groonga/doc/ja/html/characteristic.html +0 -162
- data/vendor/local/share/groonga/doc/ja/html/commands.html +0 -139
- data/vendor/local/share/groonga/doc/ja/html/commands/cache_limit.html +0 -173
- data/vendor/local/share/groonga/doc/ja/html/commands/check.html +0 -285
- data/vendor/local/share/groonga/doc/ja/html/commands/clearlock.html +0 -180
- data/vendor/local/share/groonga/doc/ja/html/commands/column_create.html +0 -210
- data/vendor/local/share/groonga/doc/ja/html/commands/column_list.html +0 -220
- data/vendor/local/share/groonga/doc/ja/html/commands/column_remove.html +0 -183
- data/vendor/local/share/groonga/doc/ja/html/commands/define_selector.html +0 -221
- data/vendor/local/share/groonga/doc/ja/html/commands/defrag.html +0 -177
- data/vendor/local/share/groonga/doc/ja/html/commands/delete.html +0 -182
- data/vendor/local/share/groonga/doc/ja/html/commands/dump.html +0 -177
- data/vendor/local/share/groonga/doc/ja/html/commands/load.html +0 -208
- data/vendor/local/share/groonga/doc/ja/html/commands/log_level.html +0 -187
- data/vendor/local/share/groonga/doc/ja/html/commands/log_put.html +0 -190
- data/vendor/local/share/groonga/doc/ja/html/commands/log_reopen.html +0 -188
- data/vendor/local/share/groonga/doc/ja/html/commands/quit.html +0 -156
- data/vendor/local/share/groonga/doc/ja/html/commands/select.html +0 -331
- data/vendor/local/share/groonga/doc/ja/html/commands/shutdown.html +0 -156
- data/vendor/local/share/groonga/doc/ja/html/commands/status.html +0 -179
- data/vendor/local/share/groonga/doc/ja/html/commands/suggest.html +0 -191
- data/vendor/local/share/groonga/doc/ja/html/commands/table_create.html +0 -222
- data/vendor/local/share/groonga/doc/ja/html/commands/table_list.html +0 -202
- data/vendor/local/share/groonga/doc/ja/html/commands/table_remove.html +0 -173
- data/vendor/local/share/groonga/doc/ja/html/commands/view_add.html +0 -175
- data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/add.html +0 -180
- data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/get.html +0 -161
- data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/set.html +0 -182
- data/vendor/local/share/groonga/doc/ja/html/developer.html +0 -118
- data/vendor/local/share/groonga/doc/ja/html/developer/com.html +0 -136
- data/vendor/local/share/groonga/doc/ja/html/developer/document.html +0 -159
- data/vendor/local/share/groonga/doc/ja/html/developer/query.html +0 -336
- data/vendor/local/share/groonga/doc/ja/html/developer/test.html +0 -220
- data/vendor/local/share/groonga/doc/ja/html/execfile.html +0 -370
- data/vendor/local/share/groonga/doc/ja/html/expr.html +0 -157
- data/vendor/local/share/groonga/doc/ja/html/functions.html +0 -122
- data/vendor/local/share/groonga/doc/ja/html/functions/edit_distance.html +0 -162
- data/vendor/local/share/groonga/doc/ja/html/functions/geo_distance.html +0 -170
- data/vendor/local/share/groonga/doc/ja/html/functions/geo_in_circle.html +0 -173
- data/vendor/local/share/groonga/doc/ja/html/functions/geo_in_rectangle.html +0 -172
- data/vendor/local/share/groonga/doc/ja/html/functions/now.html +0 -152
- data/vendor/local/share/groonga/doc/ja/html/functions/rand.html +0 -159
- data/vendor/local/share/groonga/doc/ja/html/genindex.html +0 -227
- data/vendor/local/share/groonga/doc/ja/html/grnslap.html +0 -183
- data/vendor/local/share/groonga/doc/ja/html/grntest.html +0 -368
- data/vendor/local/share/groonga/doc/ja/html/http.html +0 -163
- data/vendor/local/share/groonga/doc/ja/html/index.html +0 -291
- data/vendor/local/share/groonga/doc/ja/html/install.html +0 -228
- data/vendor/local/share/groonga/doc/ja/html/news.html +0 -310
- data/vendor/local/share/groonga/doc/ja/html/objects.inv +0 -0
- data/vendor/local/share/groonga/doc/ja/html/process.html +0 -120
- data/vendor/local/share/groonga/doc/ja/html/pseudo_column.html +0 -147
- data/vendor/local/share/groonga/doc/ja/html/reference.html +0 -174
- data/vendor/local/share/groonga/doc/ja/html/search.html +0 -96
- data/vendor/local/share/groonga/doc/ja/html/searchindex.js +0 -1
- data/vendor/local/share/groonga/doc/ja/html/tutorial.html +0 -172
- data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial01.html +0 -388
- data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial02.html +0 -214
- data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial03.html +0 -183
- data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial04.html +0 -212
- data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial05.html +0 -169
- data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial06.html +0 -209
- data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial07.html +0 -212
- data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial08.html +0 -139
- data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial09.html +0 -114
- data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial10.html +0 -458
- data/vendor/local/share/groonga/doc/ja/html/type.html +0 -217
- data/vendor/local/share/groonga/doc/ja/source/__init__.py +0 -0
- data/vendor/local/share/groonga/doc/ja/source/characteristic.txt +0 -56
- data/vendor/local/share/groonga/doc/ja/source/commands.txt +0 -10
- data/vendor/local/share/groonga/doc/ja/source/commands/cache_limit.txt +0 -52
- data/vendor/local/share/groonga/doc/ja/source/commands/check.txt +0 -164
- data/vendor/local/share/groonga/doc/ja/source/commands/clearlock.txt +0 -61
- data/vendor/local/share/groonga/doc/ja/source/commands/column_create.txt +0 -93
- data/vendor/local/share/groonga/doc/ja/source/commands/column_list.txt +0 -97
- data/vendor/local/share/groonga/doc/ja/source/commands/column_remove.txt +0 -58
- data/vendor/local/share/groonga/doc/ja/source/commands/define_selector.txt +0 -114
- data/vendor/local/share/groonga/doc/ja/source/commands/defrag.txt +0 -57
- data/vendor/local/share/groonga/doc/ja/source/commands/delete.txt +0 -68
- data/vendor/local/share/groonga/doc/ja/source/commands/dump.txt +0 -62
- data/vendor/local/share/groonga/doc/ja/source/commands/load.txt +0 -98
- data/vendor/local/share/groonga/doc/ja/source/commands/log_level.txt +0 -65
- data/vendor/local/share/groonga/doc/ja/source/commands/log_put.txt +0 -69
- data/vendor/local/share/groonga/doc/ja/source/commands/log_reopen.txt +0 -66
- data/vendor/local/share/groonga/doc/ja/source/commands/quit.txt +0 -38
- data/vendor/local/share/groonga/doc/ja/source/commands/select.txt +0 -247
- data/vendor/local/share/groonga/doc/ja/source/commands/shutdown.txt +0 -38
- data/vendor/local/share/groonga/doc/ja/source/commands/status.txt +0 -59
- data/vendor/local/share/groonga/doc/ja/source/commands/table_create.txt +0 -111
- data/vendor/local/share/groonga/doc/ja/source/commands/table_list.txt +0 -87
- data/vendor/local/share/groonga/doc/ja/source/commands/table_remove.txt +0 -50
- data/vendor/local/share/groonga/doc/ja/source/commands/view_add.txt +0 -53
- data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/add.txt +0 -102
- data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/get.txt +0 -78
- data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/set.txt +0 -103
- data/vendor/local/share/groonga/doc/ja/source/conf.py +0 -265
- data/vendor/local/share/groonga/doc/ja/source/developer.txt +0 -10
- data/vendor/local/share/groonga/doc/ja/source/developer/com.txt +0 -18
- data/vendor/local/share/groonga/doc/ja/source/developer/document.txt +0 -38
- data/vendor/local/share/groonga/doc/ja/source/developer/query.txt +0 -212
- data/vendor/local/share/groonga/doc/ja/source/developer/test.txt +0 -114
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-1.log +0 -6
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-10.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-11.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-12.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-13.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-14.log +0 -9
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-15.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-16.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-17.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-2.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-3.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-4.log +0 -7
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-5.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-6.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-7.log +0 -16
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-8.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-9.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-1.log +0 -8
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-2.log +0 -6
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-3.log +0 -12
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-1.log +0 -18
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-2.log +0 -10
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-3.log +0 -10
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-1.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-2.log +0 -7
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-3.log +0 -7
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-4.log +0 -13
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-5.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-6.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-7.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-1.log +0 -24
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-2.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-3.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-4.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-5.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-6.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-1.log +0 -25
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-2.log +0 -9
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-3.log +0 -21
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-4.log +0 -7
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-5.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-1.log +0 -22
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-2.log +0 -9
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-3.log +0 -20
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-4.log +0 -9
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial08-1.log +0 -14
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-1.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-10.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-2.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-3.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-4.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-5.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-6.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-7.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-8.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-9.log +0 -5
- data/vendor/local/share/groonga/doc/ja/source/execfile.txt +0 -226
- data/vendor/local/share/groonga/doc/ja/source/expr.txt +0 -43
- data/vendor/local/share/groonga/doc/ja/source/functions.txt +0 -10
- data/vendor/local/share/groonga/doc/ja/source/functions/edit_distance.txt +0 -48
- data/vendor/local/share/groonga/doc/ja/source/functions/geo_distance.txt +0 -51
- data/vendor/local/share/groonga/doc/ja/source/functions/geo_in_circle.txt +0 -54
- data/vendor/local/share/groonga/doc/ja/source/functions/geo_in_rectangle.txt +0 -55
- data/vendor/local/share/groonga/doc/ja/source/functions/now.txt +0 -34
- data/vendor/local/share/groonga/doc/ja/source/functions/rand.txt +0 -41
- data/vendor/local/share/groonga/doc/ja/source/grnslap.txt +0 -64
- data/vendor/local/share/groonga/doc/ja/source/grntest.txt +0 -259
- data/vendor/local/share/groonga/doc/ja/source/http.txt +0 -52
- data/vendor/local/share/groonga/doc/ja/source/index.txt +0 -21
- data/vendor/local/share/groonga/doc/ja/source/install.txt +0 -114
- data/vendor/local/share/groonga/doc/ja/source/news.txt +0 -199
- data/vendor/local/share/groonga/doc/ja/source/process.txt +0 -12
- data/vendor/local/share/groonga/doc/ja/source/pseudo_column.txt +0 -38
- data/vendor/local/share/groonga/doc/ja/source/rdoc.py +0 -762
- data/vendor/local/share/groonga/doc/ja/source/reference.txt +0 -14
- data/vendor/local/share/groonga/doc/ja/source/tutorial.txt +0 -10
- data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial01.txt +0 -293
- data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial02.txt +0 -100
- data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial03.txt +0 -72
- data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial04.txt +0 -111
- data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial05.txt +0 -65
- data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial06.txt +0 -91
- data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial07.txt +0 -92
- data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial08.txt +0 -53
- data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial09.txt +0 -9
- data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial10.txt +0 -486
- data/vendor/local/share/groonga/doc/ja/source/type.txt +0 -118
- data/vendor/local/share/groonga/doc/ja/source/update_execution_example.py +0 -113
- data/vendor/local/share/man/man1/groonga.1 +0 -5498
data/rroonga-build.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
#
|
3
|
-
# Copyright (C) 2009-
|
3
|
+
# Copyright (C) 2009-2011 Kouhei Sutou <kou@clear-code.com>
|
4
4
|
#
|
5
5
|
# This library is free software; you can redistribute it and/or
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -18,7 +18,7 @@
|
|
18
18
|
module RroongaBuild
|
19
19
|
module RequiredGroongaVersion
|
20
20
|
MAJOR = 1
|
21
|
-
MINOR =
|
21
|
+
MINOR = 1
|
22
22
|
MICRO = 0
|
23
23
|
VERSION = [MAJOR, MINOR, MICRO]
|
24
24
|
end
|
@@ -41,7 +41,7 @@ module RroongaBuild
|
|
41
41
|
|
42
42
|
def prepend_pkg_config_path_for_local_groonga
|
43
43
|
pkg_config_dir = File.join(local_groonga_install_dir, "lib", "pkgconfig")
|
44
|
-
|
44
|
+
PKGConfig.add_path(pkg_config_dir)
|
45
45
|
end
|
46
46
|
|
47
47
|
def add_rpath_for_local_groonga
|
data/test/run-test.rb
CHANGED
@@ -67,7 +67,7 @@ $LOAD_PATH.unshift(test_dir)
|
|
67
67
|
require 'groonga-test-utils'
|
68
68
|
|
69
69
|
pkg_config = File.join(base_dir, "vendor", "local", "lib", "pkgconfig")
|
70
|
-
|
70
|
+
PKGConfig.add_path(pkg_config)
|
71
71
|
|
72
72
|
Dir.glob("#{base_dir}/test/**/test{_,-}*.rb") do |file|
|
73
73
|
require file.sub(/\.rb$/, '')
|
data/test/test-array.rb
CHANGED
@@ -18,6 +18,10 @@ class ArrayTest < Test::Unit::TestCase
|
|
18
18
|
|
19
19
|
setup :setup_database
|
20
20
|
|
21
|
+
def test_support_key?
|
22
|
+
assert_not_predicate(Groonga::Array.create(:name => "Users"), :support_key?)
|
23
|
+
end
|
24
|
+
|
21
25
|
def test_inspect_size
|
22
26
|
path = @tables_dir + "named.groonga"
|
23
27
|
contain_table = Groonga::Array.create(:name => "name", :path => path.to_s)
|
data/test/test-column.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2009-
|
1
|
+
# Copyright (C) 2009-2011 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
|
@@ -286,6 +286,36 @@ class ColumnTest < Test::Unit::TestCase
|
|
286
286
|
assert_false(post["hidden"])
|
287
287
|
end
|
288
288
|
|
289
|
+
def test_indexes
|
290
|
+
Groonga::Schema.define do |schema|
|
291
|
+
schema.create_table("Comments") do |table|
|
292
|
+
table.short_text("title")
|
293
|
+
end
|
294
|
+
end
|
295
|
+
title = Groonga["Comments.title"]
|
296
|
+
assert_equal([], title.indexes)
|
297
|
+
|
298
|
+
Groonga::Schema.define do |schema|
|
299
|
+
schema.create_table("Terms",
|
300
|
+
:type => :patricia_trie,
|
301
|
+
:default_tokenizer => "TokenBigram") do |table|
|
302
|
+
table.index("Comments.title")
|
303
|
+
end
|
304
|
+
end
|
305
|
+
assert_equal([Groonga["Terms.Comments_title"]],
|
306
|
+
title.indexes)
|
307
|
+
|
308
|
+
Groonga::Schema.define do |schema|
|
309
|
+
schema.create_table("Titles",
|
310
|
+
:type => :hash) do |table|
|
311
|
+
table.index("Comments.title")
|
312
|
+
end
|
313
|
+
end
|
314
|
+
assert_equal([Groonga["Titles.Comments_title"],
|
315
|
+
Groonga["Terms.Comments_title"]],
|
316
|
+
title.indexes)
|
317
|
+
end
|
318
|
+
|
289
319
|
private
|
290
320
|
def assert_content_search(expected_records, term)
|
291
321
|
records = @bookmarks_index_content.search(term).records
|
data/test/test-context-select.rb
CHANGED
@@ -19,35 +19,58 @@ class ContextSelectTest < Test::Unit::TestCase
|
|
19
19
|
setup :setup_database
|
20
20
|
setup
|
21
21
|
def setup_data
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
22
|
+
Groonga::Schema.define do |schema|
|
23
|
+
schema.create_table("Books",
|
24
|
+
:type => :hash, :key_type => "ShortText") do |table|
|
25
|
+
table.time("published")
|
26
|
+
end
|
27
|
+
|
28
|
+
schema.create_table("Users",
|
29
|
+
:type => :hash, :key_type => "ShortText") do |table|
|
30
|
+
table.reference("book", "Books")
|
31
|
+
end
|
32
|
+
|
33
|
+
schema.create_table("Bigram",
|
34
|
+
:type => :patricia_trie,
|
35
|
+
:key_type => "ShortText",
|
36
|
+
:default_tokenizer => "TokenBigramSplitSymbolAlpha") do |table|
|
37
|
+
table.index("Books._key")
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
@books = Groonga["Books"]
|
42
|
+
@users = Groonga["Users"]
|
26
43
|
|
27
44
|
@books.add("the groonga book", :published => Time.parse("2010/04/01"))
|
45
|
+
@books.add("the groonga book (2)", :published => Time.parse("2011/04/01"))
|
46
|
+
|
28
47
|
@users.add("morita", :book => "the groonga book")
|
29
48
|
@users.add("gunyara-kun", :book => "the groonga book")
|
30
49
|
@users.add("yu")
|
50
|
+
@users.add("ryoqun", :book => "the groonga book (2)")
|
31
51
|
end
|
32
52
|
|
33
53
|
def test_no_option
|
34
54
|
result = context.select(@users)
|
35
|
-
assert_equal([
|
55
|
+
assert_equal([4,
|
36
56
|
[{"_id" => 1, "_key" => "morita",
|
37
57
|
"book" => "the groonga book"},
|
38
58
|
{"_id" => 2, "_key" => "gunyara-kun",
|
39
59
|
"book" => "the groonga book"},
|
40
60
|
{"_id" => 3, "_key" => "yu",
|
41
|
-
"book" => ""}
|
61
|
+
"book" => ""},
|
62
|
+
{"_id" => 4, "_key" => "ryoqun",
|
63
|
+
"book" => "the groonga book (2)"}]],
|
42
64
|
[result.n_hits, result.records])
|
43
65
|
end
|
44
66
|
|
45
67
|
def test_output_columns
|
46
68
|
result = context.select(@users, :output_columns => ["_key"])
|
47
|
-
assert_equal([
|
69
|
+
assert_equal([4,
|
48
70
|
[{"_key" => "morita"},
|
49
71
|
{"_key" => "gunyara-kun"},
|
50
|
-
{"_key" => "yu"}
|
72
|
+
{"_key" => "yu"},
|
73
|
+
{"_key" => "ryoqun"}]],
|
51
74
|
[result.n_hits, result.records])
|
52
75
|
end
|
53
76
|
|
@@ -58,15 +81,18 @@ class ContextSelectTest < Test::Unit::TestCase
|
|
58
81
|
:drill_down_output_columns => "_key",
|
59
82
|
:drill_down_limit => 10)
|
60
83
|
drill_down = normalize_drill_down(result.drill_down)
|
61
|
-
assert_equal([
|
84
|
+
assert_equal([4,
|
62
85
|
[{"_key" => "morita"},
|
63
86
|
{"_key" => "gunyara-kun"},
|
64
|
-
{"_key" => "yu"}
|
87
|
+
{"_key" => "yu"},
|
88
|
+
{"_key" => "ryoqun"}],
|
65
89
|
{
|
66
|
-
"_key" => [
|
90
|
+
"_key" => [4, [{"_key" => "morita"},
|
67
91
|
{"_key" => "gunyara-kun"},
|
68
|
-
{"_key" => "yu"}
|
69
|
-
|
92
|
+
{"_key" => "yu"},
|
93
|
+
{"_key" => "ryoqun"}]],
|
94
|
+
"book" => [2, [{"_key" => "the groonga book"},
|
95
|
+
{"_key" => "the groonga book (2)"}]],
|
70
96
|
},
|
71
97
|
],
|
72
98
|
[result.n_hits, result.records, drill_down])
|
@@ -95,11 +121,16 @@ class ContextSelectTest < Test::Unit::TestCase
|
|
95
121
|
"_id" => 1,
|
96
122
|
"_key" => "the groonga book",
|
97
123
|
"published" => Time.parse("2010/04/01"),
|
124
|
+
},
|
125
|
+
{
|
126
|
+
"_id" => 2,
|
127
|
+
"_key" => "the groonga book (2)",
|
128
|
+
"published" => Time.parse("2011/04/01"),
|
98
129
|
}],
|
99
130
|
result.records)
|
100
131
|
end
|
101
132
|
|
102
|
-
def
|
133
|
+
def test_invalid
|
103
134
|
assert_raise(Groonga::SyntaxError) do
|
104
135
|
context.select(@books, :query => "<")
|
105
136
|
end
|
data/test/test-context.rb
CHANGED
@@ -29,6 +29,42 @@ class ContextTest < Test::Unit::TestCase
|
|
29
29
|
assert_equal(Groonga::Encoding::UTF8, context.encoding)
|
30
30
|
end
|
31
31
|
|
32
|
+
def test_create_database
|
33
|
+
db_path = @tmp_dir + "db"
|
34
|
+
assert_not_predicate(db_path, :exist?)
|
35
|
+
context = Groonga::Context.new
|
36
|
+
assert_equal(nil, context.database)
|
37
|
+
database = context.create_database(db_path.to_s)
|
38
|
+
assert_predicate(db_path, :exist?)
|
39
|
+
assert_not_predicate(database, :closed?)
|
40
|
+
assert_equal(database, context.database)
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_create_temporary_database
|
44
|
+
before_files = @tmp_dir.children
|
45
|
+
context = Groonga::Context.new
|
46
|
+
database = context.create_database
|
47
|
+
assert_nil(database.name)
|
48
|
+
assert_equal(before_files, @tmp_dir.children)
|
49
|
+
end
|
50
|
+
|
51
|
+
def test_open_database
|
52
|
+
db_path = @tmp_dir + "db"
|
53
|
+
database = Groonga::Database.create(:path => db_path.to_s)
|
54
|
+
database.close
|
55
|
+
|
56
|
+
assert_predicate(database, :closed?)
|
57
|
+
called = false
|
58
|
+
context = Groonga::Context.new
|
59
|
+
context.open_database(db_path.to_s) do |_database|
|
60
|
+
database = _database
|
61
|
+
assert_not_predicate(database, :closed?)
|
62
|
+
called = true
|
63
|
+
end
|
64
|
+
assert_true(called)
|
65
|
+
assert_predicate(database, :closed?)
|
66
|
+
end
|
67
|
+
|
32
68
|
def test_encoding
|
33
69
|
context = Groonga::Context.new
|
34
70
|
assert_equal(Groonga::Encoding.default, context.encoding)
|
@@ -70,4 +106,12 @@ class ContextTest < Test::Unit::TestCase
|
|
70
106
|
Groonga::Database.create
|
71
107
|
assert_equal("ShortText", Groonga["ShortText"].name)
|
72
108
|
end
|
109
|
+
|
110
|
+
def test_support_zlib?
|
111
|
+
assert_boolean(Groonga::Context.default.support_zlib?)
|
112
|
+
end
|
113
|
+
|
114
|
+
def test_support_lzo?
|
115
|
+
assert_boolean(Groonga::Context.default.support_lzo?)
|
116
|
+
end
|
73
117
|
end
|
data/test/test-database.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
|
@@ -38,7 +38,9 @@ class DatabaseTest < Test::Unit::TestCase
|
|
38
38
|
def test_open
|
39
39
|
db_path = @tmp_dir + "db"
|
40
40
|
database = Groonga::Database.create(:path => db_path.to_s)
|
41
|
+
database.close
|
41
42
|
|
43
|
+
assert_predicate(database, :closed?)
|
42
44
|
called = false
|
43
45
|
Groonga::Database.open(db_path.to_s) do |_database|
|
44
46
|
database = _database
|
@@ -49,6 +51,17 @@ class DatabaseTest < Test::Unit::TestCase
|
|
49
51
|
assert_predicate(database, :closed?)
|
50
52
|
end
|
51
53
|
|
54
|
+
def test_close
|
55
|
+
db_path = @tmp_dir + "db"
|
56
|
+
database = Groonga::Database.create(:path => db_path.to_s)
|
57
|
+
database.close
|
58
|
+
|
59
|
+
database = Groonga::Database.open(db_path.to_s)
|
60
|
+
assert_not_predicate(database, :closed?)
|
61
|
+
database.close
|
62
|
+
assert_predicate(database, :closed?)
|
63
|
+
end
|
64
|
+
|
52
65
|
def test_new
|
53
66
|
db_path = @tmp_dir + "db"
|
54
67
|
assert_raise(Groonga::NoSuchFileOrDirectory) do
|
@@ -110,4 +123,11 @@ class DatabaseTest < Test::Unit::TestCase
|
|
110
123
|
database.clear_lock
|
111
124
|
assert_not_predicate(database, :locked?)
|
112
125
|
end
|
126
|
+
|
127
|
+
def test_touch
|
128
|
+
database = Groonga::Database.create
|
129
|
+
assert_nothing_raised do
|
130
|
+
database.touch
|
131
|
+
end
|
132
|
+
end
|
113
133
|
end
|
@@ -24,30 +24,41 @@ class ExpressionBuilderTest < Test::Unit::TestCase
|
|
24
24
|
@pets = Groonga::Hash.create(:name => "Pets", :key_type => "ShortText")
|
25
25
|
@pets.define_column("name", "ShortText")
|
26
26
|
|
27
|
+
@sections = Groonga::PatriciaTrie.create(:name => "Sections",
|
28
|
+
:key_type => "ShortText")
|
29
|
+
|
27
30
|
@users = Groonga::Hash.create(:name => "Users", :key_type => "ShortText")
|
28
31
|
@name = @users.define_column("name", "ShortText")
|
29
32
|
@hp = @users.define_column("hp", "UInt32")
|
30
|
-
@users.define_column("pet", @pets)
|
33
|
+
@user_pet = @users.define_column("pet", @pets)
|
34
|
+
@user_section = @users.define_column("section", @sections)
|
31
35
|
|
32
36
|
@terms = Groonga::PatriciaTrie.create(:name => "Terms",
|
33
|
-
:default_tokenizer => "TokenBigram"
|
37
|
+
:default_tokenizer => "TokenBigram",
|
38
|
+
:key_type => "ShortText")
|
34
39
|
@terms.define_index_column("user_name", @users, :source => @name)
|
35
40
|
|
36
41
|
@bookmarks = Groonga::Array.create(:name => "Bookmarks")
|
37
42
|
@bookmarks.define_column("user", @users)
|
38
43
|
@bookmarks.define_column("uri", "ShortText")
|
44
|
+
|
45
|
+
@sections.define_index_column("user_section", @users,
|
46
|
+
:source => @user_section)
|
39
47
|
end
|
40
48
|
|
41
49
|
def setup_data
|
42
50
|
@morita = @users.add("morita",
|
43
51
|
:name => "mori daijiro",
|
44
|
-
:hp => 100
|
52
|
+
:hp => 100,
|
53
|
+
:section => "search/core")
|
45
54
|
@gunyara_kun = @users.add("gunyara-kun",
|
46
55
|
:name => "Tasuku SUENAGA",
|
47
|
-
:hp => 150
|
56
|
+
:hp => 150,
|
57
|
+
:section => "suggest/all")
|
48
58
|
@yu = @users.add("yu",
|
49
59
|
:name => "Yutaro Shimamura",
|
50
|
-
:hp => 200
|
60
|
+
:hp => 200,
|
61
|
+
:section => "search/all")
|
51
62
|
|
52
63
|
@groonga = @bookmarks.add(:user => @morita, :uri => "http://groonga.org/")
|
53
64
|
@ruby = @bookmarks.add(:user => @morita, :uri => "http://ruby-lang.org/")
|
@@ -118,6 +129,22 @@ class ExpressionBuilderTest < Test::Unit::TestCase
|
|
118
129
|
result.collect {|record| record.key.key})
|
119
130
|
end
|
120
131
|
|
132
|
+
def test_prefix_saerch
|
133
|
+
result = @users.select do |record|
|
134
|
+
record.section.prefix_search("search")
|
135
|
+
end
|
136
|
+
assert_equal(["morita", "yu"].sort,
|
137
|
+
result.collect {|record| record.key.key}.sort)
|
138
|
+
end
|
139
|
+
|
140
|
+
def test_suffix_search
|
141
|
+
result = @users.select do |record|
|
142
|
+
record.name.suffix_search("jiro")
|
143
|
+
end
|
144
|
+
assert_equal(["morita"].sort,
|
145
|
+
result.collect {|record| record.key.key}.sort)
|
146
|
+
end
|
147
|
+
|
121
148
|
def test_query_string
|
122
149
|
result = @users.select("name:@ro")
|
123
150
|
assert_equal(["morita", "yu"],
|
@@ -140,6 +167,20 @@ class ExpressionBuilderTest < Test::Unit::TestCase
|
|
140
167
|
result.collect {|record| record.key["uri"]})
|
141
168
|
end
|
142
169
|
|
170
|
+
def test_record_id_object
|
171
|
+
morita = Object.new
|
172
|
+
morita_singleton_class = (class << morita; self; end)
|
173
|
+
morita_id = @morita.id
|
174
|
+
morita_singleton_class.send(:define_method, :record_id) do
|
175
|
+
morita_id
|
176
|
+
end
|
177
|
+
result = @bookmarks.select do |record|
|
178
|
+
record["user"] == morita
|
179
|
+
end
|
180
|
+
assert_equal(["http://groonga.org/", "http://ruby-lang.org/"],
|
181
|
+
result.collect {|record| record.key["uri"]})
|
182
|
+
end
|
183
|
+
|
143
184
|
def test_nested_column
|
144
185
|
result = @bookmarks.select do |record|
|
145
186
|
record[".user.name"] == @morita["name"]
|
@@ -32,6 +32,18 @@ class FixSizeColumnTest < Test::Unit::TestCase
|
|
32
32
|
:path => @viewed_column_path.to_s)
|
33
33
|
end
|
34
34
|
|
35
|
+
def test_index?
|
36
|
+
assert_not_predicate(@viewed, :index?)
|
37
|
+
end
|
38
|
+
|
39
|
+
def test_vector?
|
40
|
+
assert_not_predicate(@viewed, :vector?)
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_scalar?
|
44
|
+
assert_predicate(@viewed, :scalar?)
|
45
|
+
end
|
46
|
+
|
35
47
|
def test_inspect
|
36
48
|
assert_equal("#<Groonga::FixSizeColumn " +
|
37
49
|
"id: <#{@viewed.id}>, " +
|
data/test/test-hash.rb
CHANGED
@@ -19,6 +19,12 @@ class HashTest < Test::Unit::TestCase
|
|
19
19
|
|
20
20
|
setup :setup_database
|
21
21
|
|
22
|
+
def test_support_key?
|
23
|
+
assert_predicate(Groonga::Hash.create(:name => "Users",
|
24
|
+
:key_type => "ShortText"),
|
25
|
+
:support_key?)
|
26
|
+
end
|
27
|
+
|
22
28
|
def test_delete
|
23
29
|
bookmarks_path = @tables_dir + "bookmarks"
|
24
30
|
bookmarks = Groonga::Hash.create(:name => "Bookmarks",
|
@@ -77,7 +83,7 @@ class HashTest < Test::Unit::TestCase
|
|
77
83
|
"id: <#{anonymous_table.id}>, " +
|
78
84
|
"name: (anonymous), " +
|
79
85
|
"path: <#{path}>, " +
|
80
|
-
"domain:
|
86
|
+
"domain: <ShortText>, " +
|
81
87
|
"range: (nil), " +
|
82
88
|
"flags: <>, " +
|
83
89
|
"encoding: <#{encoding.inspect}>, " +
|
@@ -91,7 +97,7 @@ class HashTest < Test::Unit::TestCase
|
|
91
97
|
"id: <#{anonymous_table.id}>, " +
|
92
98
|
"name: (anonymous), " +
|
93
99
|
"path: (temporary), " +
|
94
|
-
"domain:
|
100
|
+
"domain: <ShortText>, " +
|
95
101
|
"range: (nil), " +
|
96
102
|
"flags: <>, " +
|
97
103
|
"encoding: <#{encoding.inspect}>, " +
|
@@ -106,7 +112,7 @@ class HashTest < Test::Unit::TestCase
|
|
106
112
|
"id: <#{named_table.id}>, " +
|
107
113
|
"name: <Users>, " +
|
108
114
|
"path: <#{path}>, " +
|
109
|
-
"domain:
|
115
|
+
"domain: <ShortText>, " +
|
110
116
|
"range: (nil), " +
|
111
117
|
"flags: <>, " +
|
112
118
|
"encoding: <#{encoding.inspect}>, " +
|
@@ -120,7 +126,7 @@ class HashTest < Test::Unit::TestCase
|
|
120
126
|
"id: <#{named_table.id}>, " +
|
121
127
|
"name: (anonymous), " +
|
122
128
|
"path: (temporary), " +
|
123
|
-
"domain:
|
129
|
+
"domain: <ShortText>, " +
|
124
130
|
"range: (nil), " +
|
125
131
|
"flags: <>, " +
|
126
132
|
"encoding: <#{encoding.inspect}>, " +
|