rroonga 5.0.5 → 5.0.8
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.
- checksums.yaml +4 -4
- data/Rakefile +40 -8
- data/ext/groonga/extconf.rb +17 -2
- data/ext/groonga/rb-grn-context.c +25 -1
- data/ext/groonga/rb-grn-database.c +1 -1
- data/ext/groonga/rb-grn-patricia-trie.c +0 -2
- data/ext/groonga/rb-grn-table.c +2 -2
- data/ext/groonga/rb-grn.h +1 -1
- data/lib/groonga/expression-builder.rb +27 -1
- data/rroonga-build.rb +3 -3
- data/rroonga.gemspec +1 -0
- data/test/test-column.rb +4 -2
- data/test/test-context.rb +9 -1
- data/test/test-expression-builder.rb +38 -1
- data/test/test-remote.rb +12 -3
- data/test/test-table-group.rb +13 -11
- data/test/test-table.rb +4 -6
- metadata +66 -52
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 127d2cdb98d5b76f7b15abcf73df3490bd3ab152
|
4
|
+
data.tar.gz: c38949db7ca8a98925bc4ac5694010b61c580928
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25964d97c7ab880d5309f1eff155318de9d0fabc1ca7a66f5d9258887e6187efc519d6cb514bd02e54ab585cf5702679e3df8ebece0c86a17c0530828086c95e
|
7
|
+
data.tar.gz: d11d80b80c58577cf770b3cfea6f369fdb265221ec3aa9ce0f499c317d9dfeff89cb719dbb038ed18095e631adba0da895bb18a6e7eb312a827c918c16e99a49
|
data/Rakefile
CHANGED
@@ -17,6 +17,7 @@
|
|
17
17
|
|
18
18
|
require "find"
|
19
19
|
require "fileutils"
|
20
|
+
require "shellwords"
|
20
21
|
require "pathname"
|
21
22
|
require "erb"
|
22
23
|
require "yard"
|
@@ -148,17 +149,48 @@ namespace :clean do
|
|
148
149
|
end
|
149
150
|
end
|
150
151
|
|
151
|
-
desc "Build cross compile binary with Vagrant"
|
152
152
|
namespace :build do
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
153
|
+
architectures = [:x86, :x64]
|
154
|
+
|
155
|
+
namespace :windows do
|
156
|
+
ruby_versions = "2.0.0:2.1.6:2.2.2"
|
157
|
+
|
158
|
+
architectures.each do |architecture|
|
159
|
+
desc "Build gem for Windows #{architecture}"
|
160
|
+
task architecture do
|
161
|
+
build_dir = "tmp/windows"
|
162
|
+
rm_rf build_dir
|
163
|
+
mkdir_p build_dir
|
164
|
+
|
165
|
+
commands = [
|
166
|
+
["git", "clone", "file://#{Dir.pwd}/.git", build_dir],
|
167
|
+
["cd", build_dir],
|
168
|
+
["bundle"],
|
169
|
+
["rake", "cross", "native", "gem", "RUBY_CC_VERSION=#{ruby_versions}"],
|
170
|
+
]
|
171
|
+
if architecture == :x64
|
172
|
+
commands.unshift(["export", "RROONGA_USE_GROONGA_X64=true"])
|
173
|
+
end
|
174
|
+
raw_commands = commands.collect do |command|
|
175
|
+
Shellwords.join(command)
|
176
|
+
end
|
177
|
+
raw_command_line = raw_commands.join(" && ")
|
178
|
+
|
179
|
+
require "rake_compiler_dock"
|
180
|
+
RakeCompilerDock.sh(raw_command_line)
|
181
|
+
|
182
|
+
version = spec.version
|
183
|
+
cp("#{build_dir}/pkg/rroonga-#{version}-#{architecture}-mingw32.gem",
|
184
|
+
"pkg/")
|
185
|
+
end
|
160
186
|
end
|
161
187
|
end
|
188
|
+
|
189
|
+
desc "Build gems for Windows"
|
190
|
+
build_tasks = architectures.collect do |architecture|
|
191
|
+
"windows:#{architecture}"
|
192
|
+
end
|
193
|
+
task :windows => build_tasks
|
162
194
|
end
|
163
195
|
|
164
196
|
task :default => :test
|
data/ext/groonga/extconf.rb
CHANGED
@@ -162,6 +162,20 @@ def configure_command_line(prefix)
|
|
162
162
|
escaped_command_line.join(" ")
|
163
163
|
end
|
164
164
|
|
165
|
+
def guess_make
|
166
|
+
env_make = ENV["MAKE"]
|
167
|
+
return env_make if env_make
|
168
|
+
|
169
|
+
candidates = ["gmake", "make"]
|
170
|
+
candidates.each do |candidate|
|
171
|
+
(ENV["PATH"] || "").split(File::PATH_SEPARATOR).each do |path|
|
172
|
+
return candidate if File.executable?(File.join(path, candidate))
|
173
|
+
end
|
174
|
+
end
|
175
|
+
|
176
|
+
"make"
|
177
|
+
end
|
178
|
+
|
165
179
|
def n_processors
|
166
180
|
proc_file = "/proc/cpuinfo"
|
167
181
|
if File.exist?(proc_file)
|
@@ -174,12 +188,13 @@ def n_processors
|
|
174
188
|
end
|
175
189
|
|
176
190
|
def install_for_gnu_build_system(install_dir)
|
191
|
+
make = guess_make
|
177
192
|
run_command("configuring...",
|
178
193
|
configure_command_line(install_dir))
|
179
194
|
run_command("building (maybe long time)...",
|
180
|
-
"make -j#{n_processors}")
|
195
|
+
"#{make} -j#{n_processors}")
|
181
196
|
run_command("installing...",
|
182
|
-
"make install")
|
197
|
+
"#{make} install")
|
183
198
|
end
|
184
199
|
|
185
200
|
def build_groonga_from_git(major, minor, micro)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- coding: utf-8; mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2
2
|
/*
|
3
|
-
Copyright (C) 2010-
|
3
|
+
Copyright (C) 2010-2015 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
|
@@ -943,6 +943,28 @@ rb_grn_context_array_reference (VALUE self, VALUE name_or_id)
|
|
943
943
|
return GRNOBJECT2RVAL(Qnil, context, object, GRN_FALSE);
|
944
944
|
}
|
945
945
|
|
946
|
+
/*
|
947
|
+
* Checks whether object with the ID is opened or not.
|
948
|
+
*
|
949
|
+
* @overload opened?(id)
|
950
|
+
* @param id [Integer] The ID to be checked
|
951
|
+
* @return [Boolean] `true` if object with the `id` is opened,
|
952
|
+
* `false` otherwise.
|
953
|
+
*/
|
954
|
+
static VALUE
|
955
|
+
rb_grn_context_is_opened (VALUE self, VALUE rb_id)
|
956
|
+
{
|
957
|
+
grn_ctx *context;
|
958
|
+
grn_id id;
|
959
|
+
grn_bool is_opened;
|
960
|
+
|
961
|
+
context = SELF(self);
|
962
|
+
id = NUM2UINT(rb_id);
|
963
|
+
is_opened = grn_ctx_is_opened(context, id);
|
964
|
+
|
965
|
+
return CBOOL2RVAL(is_opened);
|
966
|
+
}
|
967
|
+
|
946
968
|
void
|
947
969
|
rb_grn_context_object_created (VALUE rb_context, VALUE rb_object)
|
948
970
|
{
|
@@ -999,4 +1021,6 @@ rb_grn_init_context (VALUE mGrn)
|
|
999
1021
|
rb_define_method(cGrnContext, "connect", rb_grn_context_connect, -1);
|
1000
1022
|
rb_define_method(cGrnContext, "send", rb_grn_context_send, 1);
|
1001
1023
|
rb_define_method(cGrnContext, "receive", rb_grn_context_receive, 0);
|
1024
|
+
|
1025
|
+
rb_define_method(cGrnContext, "opened?", rb_grn_context_is_opened, 1);
|
1002
1026
|
}
|
@@ -160,7 +160,7 @@ reset_floating_objects (VALUE rb_context)
|
|
160
160
|
*
|
161
161
|
* @overload create(options=nil)
|
162
162
|
* @return [Groonga::Database] 作成されたデータベースを返す。
|
163
|
-
* @param
|
163
|
+
* @param [::Hash] options The name and value
|
164
164
|
* pairs. Omitted names are initialized as the default value.
|
165
165
|
* @option options :path
|
166
166
|
* データベースを保存するパス。省略すると一時データベース
|
data/ext/groonga/rb-grn-table.c
CHANGED
@@ -1348,10 +1348,10 @@ rb_grn_table_sort (int argc, VALUE *argv, VALUE self)
|
|
1348
1348
|
*
|
1349
1349
|
* @!macro [new] table.group.options
|
1350
1350
|
* @option options :max_n_sub_records
|
1351
|
-
*
|
1351
|
+
* グループ化した後のレコードのそれぞれについて最大`:max_n_sub_records`件まで
|
1352
1352
|
* そのグループに含まれる _table_ のレコードをサブレコードとして格納する。
|
1353
1353
|
* @option options [String, Symbol] :calc_target
|
1354
|
-
* The target column name for
|
1354
|
+
* The target column name for `:calc_types`.
|
1355
1355
|
* @option options [::Array] :calc_types
|
1356
1356
|
* It specifies how to calculate (aggregate) values in grouped records by
|
1357
1357
|
* a drilldown. You can specify multiple calculation types.
|
data/ext/groonga/rb-grn.h
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
2
|
#
|
3
3
|
# Copyright (C) 2015 Masafumi Yokoyama <yokoyama@clear-code.com>
|
4
|
-
# Copyright (C) 2009-
|
4
|
+
# Copyright (C) 2009-2015 Kouhei Sutou <kou@clear-code.com>
|
5
5
|
#
|
6
6
|
# This library is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -448,6 +448,28 @@ module Groonga
|
|
448
448
|
super(Groonga::Operation::TERM_EXTRACT, column_value_builder, value)
|
449
449
|
end
|
450
450
|
end
|
451
|
+
|
452
|
+
# @private
|
453
|
+
class CallExpressionBuilder < ExpressionBuilder
|
454
|
+
def initialize(function, *arguments)
|
455
|
+
super()
|
456
|
+
@function = function
|
457
|
+
@arguments = arguments
|
458
|
+
end
|
459
|
+
|
460
|
+
def build(expression, variable)
|
461
|
+
expression.append_object(@function)
|
462
|
+
@arguments.each do |argument|
|
463
|
+
case argument
|
464
|
+
when String
|
465
|
+
expression.append_constant(argument)
|
466
|
+
else
|
467
|
+
argument.build(expression, variable)
|
468
|
+
end
|
469
|
+
end
|
470
|
+
expression.append_operation(Operation::CALL, @arguments.size)
|
471
|
+
end
|
472
|
+
end
|
451
473
|
end
|
452
474
|
|
453
475
|
# @private
|
@@ -516,6 +538,10 @@ module Groonga
|
|
516
538
|
column_expression_builder(object, name)
|
517
539
|
end
|
518
540
|
|
541
|
+
def call(function, *arguments)
|
542
|
+
CallExpressionBuilder.new(@table.context[function], *arguments)
|
543
|
+
end
|
544
|
+
|
519
545
|
private
|
520
546
|
def build_match_target(&block)
|
521
547
|
sub_builder = MatchTargetRecordExpressionBuilder.new(@table, nil)
|
data/rroonga-build.rb
CHANGED
@@ -20,15 +20,15 @@ module RroongaBuild
|
|
20
20
|
module RequiredGroongaVersion
|
21
21
|
MAJOR = 5
|
22
22
|
MINOR = 0
|
23
|
-
MICRO =
|
23
|
+
MICRO = 8
|
24
24
|
VERSION = [MAJOR, MINOR, MICRO]
|
25
|
-
RELEASED_DATE = Time.utc(2015,
|
25
|
+
RELEASED_DATE = Time.utc(2015, 9, 29)
|
26
26
|
end
|
27
27
|
|
28
28
|
module LatestGroongaVersion
|
29
29
|
MAJOR = 5
|
30
30
|
MINOR = 0
|
31
|
-
MICRO =
|
31
|
+
MICRO = 8
|
32
32
|
VERSION = [MAJOR, MINOR, MICRO]
|
33
33
|
end
|
34
34
|
|
data/rroonga.gemspec
CHANGED
@@ -89,6 +89,7 @@ Gem::Specification.new do |s|
|
|
89
89
|
s.add_development_dependency("test-unit-notify")
|
90
90
|
s.add_development_dependency("rake")
|
91
91
|
s.add_development_dependency("rake-compiler", [">= 0.9.5"])
|
92
|
+
s.add_development_dependency("rake-compiler-dock")
|
92
93
|
s.add_development_dependency("bundler")
|
93
94
|
s.add_development_dependency("yard")
|
94
95
|
s.add_development_dependency("packnga", [">= 1.0.0"])
|
data/test/test-column.rb
CHANGED
@@ -331,8 +331,10 @@ class ColumnTest < Test::Unit::TestCase
|
|
331
331
|
table.index("Comments.title")
|
332
332
|
end
|
333
333
|
end
|
334
|
-
assert_equal([
|
335
|
-
|
334
|
+
assert_equal([
|
335
|
+
Groonga["Terms.Comments_title"],
|
336
|
+
Groonga["Titles.Comments_title"],
|
337
|
+
],
|
336
338
|
title.indexes)
|
337
339
|
end
|
338
340
|
|
data/test/test-context.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2009-
|
1
|
+
# Copyright (C) 2009-2015 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
|
@@ -135,6 +135,14 @@ class ContextTest < Test::Unit::TestCase
|
|
135
135
|
assert_true(context.closed?)
|
136
136
|
end
|
137
137
|
|
138
|
+
def test_opened?
|
139
|
+
Groonga::Database.create
|
140
|
+
context = Groonga::Context.default
|
141
|
+
assert do
|
142
|
+
context.opened?(Groonga::Type::SHORT_TEXT)
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
138
146
|
class RestoreTest < self
|
139
147
|
def test_simple
|
140
148
|
commands = <<EOD
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
2
|
#
|
3
3
|
# Copyright (C) 2014-2015 Masafumi Yokoyama <yokoyama@clear-code.com>
|
4
|
-
# Copyright (C) 2009-
|
4
|
+
# Copyright (C) 2009-2015 Kouhei Sutou <kou@clear-code.com>
|
5
5
|
#
|
6
6
|
# This library is free software; you can redistribute it and/or
|
7
7
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -523,6 +523,43 @@ EOC
|
|
523
523
|
end
|
524
524
|
end
|
525
525
|
|
526
|
+
class CallTest < self
|
527
|
+
def setup_tables
|
528
|
+
Groonga::Schema.define do |schema|
|
529
|
+
schema.create_table("Shops",
|
530
|
+
:type => :hash,
|
531
|
+
:key_type => "ShortText") do |table|
|
532
|
+
table.wgs84_geo_point("location")
|
533
|
+
end
|
534
|
+
|
535
|
+
schema.create_table("Locations",
|
536
|
+
:type => :patricia_trie,
|
537
|
+
:key_type => :wgs84_geo_point) do |table|
|
538
|
+
table.index("Shops.location")
|
539
|
+
end
|
540
|
+
end
|
541
|
+
|
542
|
+
@shops = Groonga["Shops"]
|
543
|
+
end
|
544
|
+
|
545
|
+
def setup_data
|
546
|
+
@shops.add("Nezu no taiyaki", :location => "35.720253,139.762573")
|
547
|
+
@shops.add("Taiyaki Kataoka", :location => "35.712521,139.715591")
|
548
|
+
@shops.add("Taiyaki Sharaku", :location => "35.716969,139.794846")
|
549
|
+
end
|
550
|
+
|
551
|
+
def test_search
|
552
|
+
result = @shops.select do |record|
|
553
|
+
record.call("geo_in_rectangle",
|
554
|
+
record.location,
|
555
|
+
"35.7185,139.7912",
|
556
|
+
"35.7065,139.8069")
|
557
|
+
end
|
558
|
+
assert_equal(["Taiyaki Sharaku"],
|
559
|
+
result.collect(&:_key))
|
560
|
+
end
|
561
|
+
end
|
562
|
+
|
526
563
|
class RecordTest < self
|
527
564
|
def setup_tables
|
528
565
|
Groonga::Schema.define do |schema|
|
data/test/test-remote.rb
CHANGED
@@ -47,9 +47,18 @@ 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([
|
51
|
-
|
52
|
-
|
50
|
+
assert_equal([
|
51
|
+
"alloc_count",
|
52
|
+
"cache_hit_rate",
|
53
|
+
"command_version",
|
54
|
+
"default_command_version",
|
55
|
+
"max_command_version",
|
56
|
+
"n_queries",
|
57
|
+
"start_time",
|
58
|
+
"starttime",
|
59
|
+
"uptime",
|
60
|
+
"version",
|
61
|
+
],
|
53
62
|
values.keys.sort)
|
54
63
|
end
|
55
64
|
|
data/test/test-table-group.rb
CHANGED
@@ -325,11 +325,12 @@ class TableGroupTest < Test::Unit::TestCase
|
|
325
325
|
def test_max
|
326
326
|
grouped_records = @memos.group("tag",
|
327
327
|
:calc_target => "priority",
|
328
|
-
:calc_types => [:max])
|
329
|
-
|
328
|
+
:calc_types => [:max])
|
329
|
+
grouped_data = grouped_records.collect do |record|
|
330
|
+
tag = record.key
|
330
331
|
[
|
331
332
|
tag.key,
|
332
|
-
|
333
|
+
record.max,
|
333
334
|
]
|
334
335
|
end
|
335
336
|
|
@@ -338,20 +339,21 @@ class TableGroupTest < Test::Unit::TestCase
|
|
338
339
|
["Mroonga", 50],
|
339
340
|
["Rroonga", 25],
|
340
341
|
],
|
341
|
-
|
342
|
+
grouped_data)
|
342
343
|
end
|
343
344
|
|
344
345
|
def test_all_types
|
345
346
|
grouped_records = @memos.group("tag",
|
346
347
|
:calc_target => "priority",
|
347
|
-
:calc_types => [:max, :min, :sum, :average])
|
348
|
-
|
348
|
+
:calc_types => [:max, :min, :sum, :average])
|
349
|
+
grouped_data = grouped_records.collect do |record|
|
350
|
+
tag = record.key
|
349
351
|
[
|
350
352
|
tag.key,
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
353
|
+
record.max,
|
354
|
+
record.min,
|
355
|
+
record.sum,
|
356
|
+
record.average.round(3),
|
355
357
|
]
|
356
358
|
end
|
357
359
|
|
@@ -360,7 +362,7 @@ class TableGroupTest < Test::Unit::TestCase
|
|
360
362
|
["Mroonga", 50, 10, 85, 28.333],
|
361
363
|
["Rroonga", 25, -25, 0, 0.0],
|
362
364
|
],
|
363
|
-
|
365
|
+
grouped_data)
|
364
366
|
end
|
365
367
|
end
|
366
368
|
end
|
data/test/test-table.rb
CHANGED
@@ -46,17 +46,15 @@ class TableTest < Test::Unit::TestCase
|
|
46
46
|
|
47
47
|
def test_temporary_table_define_column_default_persistent
|
48
48
|
table = Groonga::Hash.create
|
49
|
-
|
50
|
-
|
51
|
-
end
|
49
|
+
column = table.define_column("name", "ShortText")
|
50
|
+
assert_equal([column.name], table.columns.collect(&:name))
|
52
51
|
end
|
53
52
|
|
54
53
|
def test_temporary_table_define_index_column_default_persistent
|
55
54
|
bookmarks = Groonga::Hash.create(:name => "Bookmarks")
|
56
55
|
terms = Groonga::Hash.create
|
57
|
-
|
58
|
-
|
59
|
-
end
|
56
|
+
index_column = terms.define_index_column("url", bookmarks)
|
57
|
+
assert_equal([index_column.name], terms.columns.collect(&:name))
|
60
58
|
end
|
61
59
|
|
62
60
|
def test_define_column_default_persistent
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rroonga
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kouhei Sutou
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2015-
|
15
|
+
date: 2015-10-07 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: pkg-config
|
@@ -126,6 +126,20 @@ dependencies:
|
|
126
126
|
- - ">="
|
127
127
|
- !ruby/object:Gem::Version
|
128
128
|
version: 0.9.5
|
129
|
+
- !ruby/object:Gem::Dependency
|
130
|
+
name: rake-compiler-dock
|
131
|
+
requirement: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
type: :development
|
137
|
+
prerelease: false
|
138
|
+
version_requirements: !ruby/object:Gem::Requirement
|
139
|
+
requirements:
|
140
|
+
- - ">="
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: '0'
|
129
143
|
- !ruby/object:Gem::Dependency
|
130
144
|
name: bundler
|
131
145
|
requirement: !ruby/object:Gem::Requirement
|
@@ -194,10 +208,10 @@ email:
|
|
194
208
|
- y.hayamizu@gmail.com
|
195
209
|
- dara@shidara.net
|
196
210
|
executables:
|
197
|
-
-
|
211
|
+
- grntest-log-analyze
|
198
212
|
- grndump
|
199
213
|
- groonga-database-inspect
|
200
|
-
-
|
214
|
+
- groonga-index-dump
|
201
215
|
extensions:
|
202
216
|
- ext/groonga/extconf.rb
|
203
217
|
extra_rdoc_files:
|
@@ -394,64 +408,64 @@ specification_version: 4
|
|
394
408
|
summary: Ruby bindings for Groonga that provide full text search and column store
|
395
409
|
features.
|
396
410
|
test_files:
|
397
|
-
- test/test-schema.rb
|
411
|
+
- test/test-schema-create-table.rb
|
412
|
+
- test/test-type.rb
|
413
|
+
- test/test-table-select.rb
|
414
|
+
- test/test-variable-size-column.rb
|
415
|
+
- test/test-token-regexp.rb
|
416
|
+
- test/test-windows-event-logger.rb
|
417
|
+
- test/test-table-select-normalize.rb
|
418
|
+
- test/test-lock-timeout.rb
|
419
|
+
- test/test-record.rb
|
420
|
+
- test/test-plugin.rb
|
421
|
+
- test/groonga-test-utils.rb
|
422
|
+
- test/test-logger.rb
|
423
|
+
- test/test-operator.rb
|
398
424
|
- test/test-snippet.rb
|
425
|
+
- test/test-memory-pool.rb
|
426
|
+
- test/test-command-select.rb
|
427
|
+
- test/test-expression-builder.rb
|
428
|
+
- test/test-database-dumper.rb
|
429
|
+
- test/test-encoding.rb
|
399
430
|
- test/test-variable.rb
|
400
|
-
- test/test-
|
401
|
-
- test/test
|
402
|
-
- test/test-
|
403
|
-
- test/test-
|
431
|
+
- test/test-context.rb
|
432
|
+
- test/run-test.rb
|
433
|
+
- test/test-thread.rb
|
434
|
+
- test/test-index-cursor.rb
|
435
|
+
- test/test-table-select-mecab.rb
|
404
436
|
- test/test-double-array-trie.rb
|
405
|
-
- test/test-
|
406
|
-
- test/test-
|
437
|
+
- test/test-sub-records.rb
|
438
|
+
- test/test-table-offset-and-limit.rb
|
439
|
+
- test/test-table-select-weight.rb
|
440
|
+
- test/test-convert.rb
|
441
|
+
- test/test-flushable.rb
|
407
442
|
- test/test-column.rb
|
443
|
+
- test/test-table.rb
|
444
|
+
- test/test-gqtp.rb
|
445
|
+
- test/test-query-logger.rb
|
408
446
|
- test/test-table-traverse.rb
|
409
|
-
- test/test-
|
410
|
-
- test/test-table-select.rb
|
411
|
-
- test/test-encoding.rb
|
412
|
-
- test/test-logger.rb
|
413
|
-
- test/test-schema-create-table.rb
|
414
|
-
- test/test-hash.rb
|
415
|
-
- test/test-type.rb
|
416
|
-
- test/test-table-offset-and-limit.rb
|
447
|
+
- test/test-schema.rb
|
417
448
|
- test/test-version.rb
|
418
|
-
- test/test-
|
449
|
+
- test/test-exception.rb
|
450
|
+
- test/test-array.rb
|
451
|
+
- test/test-patricia-trie.rb
|
452
|
+
- test/test-schema-type.rb
|
453
|
+
- test/test-database.rb
|
419
454
|
- test/test-index-column.rb
|
420
|
-
- test/test-table-key-support.rb
|
421
|
-
- test/test-vector-column.rb
|
422
455
|
- test/test-normalizer.rb
|
423
|
-
- test/test-
|
424
|
-
- test/test-schema-type.rb
|
425
|
-
- test/test-sub-records.rb
|
426
|
-
- test/test-procedure.rb
|
427
|
-
- test/test-context.rb
|
428
|
-
- test/test-gqtp.rb
|
429
|
-
- test/test-remote.rb
|
430
|
-
- test/test-database-dumper.rb
|
456
|
+
- test/test-vector-column.rb
|
431
457
|
- test/test-database-inspector.rb
|
432
|
-
- test/test-
|
433
|
-
- test/
|
434
|
-
- test/test-
|
458
|
+
- test/test-pagination.rb
|
459
|
+
- test/test-procedure.rb
|
460
|
+
- test/test-geo-point.rb
|
461
|
+
- test/test-table-group.rb
|
462
|
+
- test/test-table-key-support.rb
|
435
463
|
- test/test-statistic-measurer.rb
|
436
|
-
- test/test-
|
437
|
-
- test/test-
|
438
|
-
- test/
|
439
|
-
- test/test-
|
440
|
-
- test/test-
|
441
|
-
- test/test-table-select-normalize.rb
|
442
|
-
- test/test-thread.rb
|
464
|
+
- test/test-fix-size-column.rb
|
465
|
+
- test/test-accessor.rb
|
466
|
+
- test/test-hash.rb
|
467
|
+
- test/test-expression.rb
|
468
|
+
- test/test-remote.rb
|
443
469
|
- test/test-schema-dumper.rb
|
444
|
-
- test/test-token-regexp.rb
|
445
470
|
- test/test-table-dumper.rb
|
446
|
-
- test/test-database.rb
|
447
|
-
- test/test-query-logger.rb
|
448
|
-
- test/test-variable-size-column.rb
|
449
|
-
- test/test-table-select-mecab.rb
|
450
|
-
- test/test-windows-event-logger.rb
|
451
|
-
- test/test-expression-builder.rb
|
452
|
-
- test/test-operator.rb
|
453
|
-
- test/test-flushable.rb
|
454
|
-
- test/test-convert.rb
|
455
|
-
- test/test-index-cursor.rb
|
456
|
-
- test/test-command-select.rb
|
457
471
|
has_rdoc:
|