rroonga 1.2.9 → 1.3.0

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.
Files changed (76) hide show
  1. data/Gemfile +1 -0
  2. data/Rakefile +1 -0
  3. data/bin/grntest-log-analyze +123 -0
  4. data/bin/groonga-query-log-extract +117 -0
  5. data/ext/groonga/rb-grn-accessor.c +7 -5
  6. data/ext/groonga/rb-grn-array-cursor.c +1 -1
  7. data/ext/groonga/rb-grn-array.c +34 -44
  8. data/ext/groonga/rb-grn-column.c +74 -38
  9. data/ext/groonga/rb-grn-context.c +19 -15
  10. data/ext/groonga/rb-grn-database.c +47 -42
  11. data/ext/groonga/rb-grn-double-array-trie-cursor.c +40 -0
  12. data/ext/groonga/rb-grn-double-array-trie.c +530 -0
  13. data/ext/groonga/rb-grn-encoding-support.c +1 -1
  14. data/ext/groonga/rb-grn-encoding.c +1 -1
  15. data/ext/groonga/rb-grn-exception.c +1 -1
  16. data/ext/groonga/rb-grn-expression-builder.c +1 -1
  17. data/ext/groonga/rb-grn-expression.c +63 -51
  18. data/ext/groonga/rb-grn-fix-size-column.c +7 -7
  19. data/ext/groonga/rb-grn-hash-cursor.c +1 -1
  20. data/ext/groonga/rb-grn-hash.c +42 -39
  21. data/ext/groonga/rb-grn-index-column.c +35 -31
  22. data/ext/groonga/rb-grn-index-cursor.c +1 -1
  23. data/ext/groonga/rb-grn-logger.c +23 -18
  24. data/ext/groonga/rb-grn-object.c +40 -27
  25. data/ext/groonga/rb-grn-operator.c +1 -1
  26. data/ext/groonga/rb-grn-patricia-trie-cursor.c +1 -1
  27. data/ext/groonga/rb-grn-patricia-trie.c +122 -90
  28. data/ext/groonga/rb-grn-plugin.c +8 -7
  29. data/ext/groonga/rb-grn-posting.c +1 -1
  30. data/ext/groonga/rb-grn-procedure.c +1 -1
  31. data/ext/groonga/rb-grn-query.c +12 -12
  32. data/ext/groonga/rb-grn-record.c +1 -1
  33. data/ext/groonga/rb-grn-snippet.c +26 -19
  34. data/ext/groonga/rb-grn-table-cursor-key-support.c +1 -1
  35. data/ext/groonga/rb-grn-table-cursor.c +4 -3
  36. data/ext/groonga/rb-grn-table-key-support.c +23 -23
  37. data/ext/groonga/rb-grn-table.c +268 -153
  38. data/ext/groonga/rb-grn-type.c +11 -7
  39. data/ext/groonga/rb-grn-utils.c +4 -1
  40. data/ext/groonga/rb-grn-variable-size-column.c +1 -1
  41. data/ext/groonga/rb-grn-variable.c +2 -2
  42. data/ext/groonga/rb-grn-view-accessor.c +1 -1
  43. data/ext/groonga/rb-grn-view-cursor.c +1 -1
  44. data/ext/groonga/rb-grn-view-record.c +1 -1
  45. data/ext/groonga/rb-grn-view.c +43 -34
  46. data/ext/groonga/rb-grn.h +6 -2
  47. data/ext/groonga/rb-groonga.c +1 -1
  48. data/lib/groonga.rb +4 -2
  49. data/lib/groonga/context.rb +16 -41
  50. data/lib/groonga/dumper.rb +6 -4
  51. data/lib/groonga/expression-builder.rb +52 -26
  52. data/lib/groonga/grntest-log.rb +206 -0
  53. data/lib/groonga/pagination.rb +21 -19
  54. data/lib/groonga/patricia-trie.rb +7 -10
  55. data/lib/groonga/posting.rb +1 -1
  56. data/lib/groonga/query-log.rb +348 -0
  57. data/lib/groonga/record.rb +47 -143
  58. data/lib/groonga/schema.rb +679 -406
  59. data/lib/groonga/view-record.rb +4 -10
  60. data/rroonga-build.rb +1 -1
  61. data/test/test-array.rb +25 -4
  62. data/test/test-column.rb +8 -8
  63. data/test/test-database.rb +2 -3
  64. data/test/test-double-array-trie.rb +164 -0
  65. data/test/test-expression-builder.rb +2 -2
  66. data/test/test-expression.rb +10 -9
  67. data/test/test-gqtp.rb +2 -2
  68. data/test/test-hash.rb +32 -8
  69. data/test/test-patricia-trie.rb +34 -10
  70. data/test/test-query-log.rb +258 -0
  71. data/test/test-record.rb +6 -5
  72. data/test/test-schema-create-table.rb +8 -0
  73. data/test/test-schema.rb +491 -234
  74. data/test/test-table.rb +17 -24
  75. metadata +123 -100
  76. data/ext/groonga/Makefile +0 -233
data/test/test-table.rb CHANGED
@@ -78,9 +78,9 @@ class TableTest < Test::Unit::TestCase
78
78
  bookmarks = Groonga::Hash.create(:name => "Bookmarks")
79
79
  message = "should not pass :path if :persistent is false: <#{column_path}>"
80
80
  assert_raise(ArgumentError.new(message)) do
81
- real_name = bookmarks.define_column("real_name", "ShortText",
82
- :path => column_path.to_s,
83
- :persistent => false)
81
+ bookmarks.define_column("real_name", "ShortText",
82
+ :path => column_path.to_s,
83
+ :persistent => false)
84
84
  end
85
85
  end
86
86
 
@@ -106,9 +106,9 @@ class TableTest < Test::Unit::TestCase
106
106
  terms = Groonga::Hash.create(:name => "Terms")
107
107
  message = "should not pass :path if :persistent is false: <#{column_path}>"
108
108
  assert_raise(ArgumentError.new(message)) do
109
- real_name = terms.define_index_column("real_name", bookmarks,
110
- :path => column_path.to_s,
111
- :persistent => false)
109
+ terms.define_index_column("real_name", bookmarks,
110
+ :path => column_path.to_s,
111
+ :persistent => false)
112
112
  end
113
113
  end
114
114
 
@@ -244,7 +244,7 @@ class TableTest < Test::Unit::TestCase
244
244
  bookmarks_path = @tables_dir + "bookmarks"
245
245
  bookmarks = Groonga::Array.create(:name => "Bookmarks",
246
246
  :path => bookmarks_path.to_s)
247
- column = bookmarks.define_column("created_at", "Time")
247
+ bookmarks.define_column("created_at", "Time")
248
248
 
249
249
  bookmark = bookmarks.add
250
250
  now = Time.now
@@ -258,12 +258,13 @@ class TableTest < Test::Unit::TestCase
258
258
  bookmarks = Groonga::Array.create(:name => "Bookmarks",
259
259
  :path => bookmarks_path.to_s)
260
260
 
261
- bookmark1 = bookmarks.add
262
- bookmark2 = bookmarks.add
263
- bookmark3 = bookmarks.add
261
+ bookmark_records = []
262
+ bookmark_records << bookmarks.add
263
+ bookmark_records << bookmarks.add
264
+ bookmark_records << bookmarks.add
264
265
 
265
266
  assert_equal(3, bookmarks.size)
266
- bookmarks.delete(bookmark2.id)
267
+ bookmarks.delete(bookmark_records[1].id)
267
268
  assert_equal(2, bookmarks.size)
268
269
  end
269
270
 
@@ -285,7 +286,7 @@ class TableTest < Test::Unit::TestCase
285
286
 
286
287
  def test_each
287
288
  users = Groonga::Array.create(:name => "Users")
288
- user_name = users.define_column("name", "ShortText")
289
+ users.define_column("name", "ShortText")
289
290
 
290
291
  names = ["daijiro", "gunyarakun", "yu"]
291
292
  names.each do |name|
@@ -454,8 +455,8 @@ class TableTest < Test::Unit::TestCase
454
455
  bookmarks = Groonga::Hash.create(:name => "Bookmarks")
455
456
  bookmarks.define_column("title", "ShortText")
456
457
 
457
- groonga = bookmarks.add("http://groonga.org/", :title => "groonga")
458
- ruby = bookmarks.add("http://ruby-lang.org/", :title => "Ruby")
458
+ bookmarks.add("http://groonga.org/", :title => "groonga")
459
+ bookmarks.add("http://ruby-lang.org/", :title => "Ruby")
459
460
 
460
461
  ruby_bookmarks = bookmarks.select {|record| record["title"] == "Ruby"}
461
462
  groonga_bookmarks = bookmarks.select {|record| record["title"] == "groonga"}
@@ -513,8 +514,6 @@ class TableTest < Test::Unit::TestCase
513
514
 
514
515
  def test_lock
515
516
  bookmarks = Groonga::Array.create(:name => "Bookmarks")
516
- bookmark = bookmarks.add
517
-
518
517
  assert_not_predicate(bookmarks, :locked?)
519
518
  bookmarks.lock
520
519
  assert_predicate(bookmarks, :locked?)
@@ -524,8 +523,6 @@ class TableTest < Test::Unit::TestCase
524
523
 
525
524
  def test_lock_failed
526
525
  bookmarks = Groonga::Array.create(:name => "Bookmarks")
527
- bookmark = bookmarks.add
528
-
529
526
  bookmarks.lock
530
527
  assert_raise(Groonga::ResourceDeadlockAvoided) do
531
528
  bookmarks.lock
@@ -534,8 +531,6 @@ class TableTest < Test::Unit::TestCase
534
531
 
535
532
  def test_lock_block
536
533
  bookmarks = Groonga::Array.create(:name => "Bookmarks")
537
- bookmark = bookmarks.add
538
-
539
534
  assert_not_predicate(bookmarks, :locked?)
540
535
  bookmarks.lock do
541
536
  assert_predicate(bookmarks, :locked?)
@@ -545,8 +540,6 @@ class TableTest < Test::Unit::TestCase
545
540
 
546
541
  def test_clear_lock
547
542
  bookmarks = Groonga::Array.create(:name => "Bookmarks")
548
- bookmark = bookmarks.add
549
-
550
543
  assert_not_predicate(bookmarks, :locked?)
551
544
  bookmarks.lock
552
545
  assert_predicate(bookmarks, :locked?)
@@ -569,7 +562,7 @@ class TableTest < Test::Unit::TestCase
569
562
 
570
563
  def test_get_common_prefix_column
571
564
  users = Groonga::Array.create(:name => "Users")
572
- name_kana = users.define_column("name_kana", "ShortText")
565
+ users.define_column("name_kana", "ShortText")
573
566
  name = users.define_column("name", "ShortText")
574
567
 
575
568
  assert_equal(name, users.column("name"))
@@ -580,7 +573,7 @@ class TableTest < Test::Unit::TestCase
580
573
  :key_type => "ShortText")
581
574
  books = Groonga::Hash.create(:name => "Books",
582
575
  :key_type => "ShortText")
583
- book = users.define_column("book", books)
576
+ users.define_column("book", books)
584
577
  users.add("morita", :book => "")
585
578
  assert_equal({"_id" => 1, "_key" => "morita", "book" => nil},
586
579
  users["morita"].attributes)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rroonga
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
5
- prerelease: false
4
+ hash: 27
5
+ prerelease:
6
6
  segments:
7
7
  - 1
8
- - 2
9
- - 9
10
- version: 1.2.9
8
+ - 3
9
+ - 0
10
+ version: 1.3.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Kouhei Sutou
@@ -19,13 +19,9 @@ autorequire:
19
19
  bindir: bin
20
20
  cert_chain: []
21
21
 
22
- date: 2011-09-16 00:00:00 +09:00
23
- default_executable: grndump
22
+ date: 2011-11-27 00:00:00 Z
24
23
  dependencies:
25
24
  - !ruby/object:Gem::Dependency
26
- type: :runtime
27
- prerelease: false
28
- name: pkg-config
29
25
  version_requirements: &id001 !ruby/object:Gem::Requirement
30
26
  none: false
31
27
  requirements:
@@ -35,11 +31,11 @@ dependencies:
35
31
  segments:
36
32
  - 0
37
33
  version: "0"
34
+ name: pkg-config
35
+ prerelease: false
36
+ type: :runtime
38
37
  requirement: *id001
39
38
  - !ruby/object:Gem::Dependency
40
- type: :development
41
- prerelease: false
42
- name: test-unit
43
39
  version_requirements: &id002 !ruby/object:Gem::Requirement
44
40
  none: false
45
41
  requirements:
@@ -49,11 +45,11 @@ dependencies:
49
45
  segments:
50
46
  - 0
51
47
  version: "0"
48
+ name: json
49
+ prerelease: false
50
+ type: :runtime
52
51
  requirement: *id002
53
52
  - !ruby/object:Gem::Dependency
54
- type: :development
55
- prerelease: false
56
- name: test-unit-notify
57
53
  version_requirements: &id003 !ruby/object:Gem::Requirement
58
54
  none: false
59
55
  requirements:
@@ -63,11 +59,11 @@ dependencies:
63
59
  segments:
64
60
  - 0
65
61
  version: "0"
62
+ name: test-unit
63
+ prerelease: false
64
+ type: :development
66
65
  requirement: *id003
67
66
  - !ruby/object:Gem::Dependency
68
- type: :development
69
- prerelease: false
70
- name: rake
71
67
  version_requirements: &id004 !ruby/object:Gem::Requirement
72
68
  none: false
73
69
  requirements:
@@ -77,11 +73,11 @@ dependencies:
77
73
  segments:
78
74
  - 0
79
75
  version: "0"
76
+ name: test-unit-notify
77
+ prerelease: false
78
+ type: :development
80
79
  requirement: *id004
81
80
  - !ruby/object:Gem::Dependency
82
- type: :development
83
- prerelease: false
84
- name: rake-compiler
85
81
  version_requirements: &id005 !ruby/object:Gem::Requirement
86
82
  none: false
87
83
  requirements:
@@ -91,11 +87,11 @@ dependencies:
91
87
  segments:
92
88
  - 0
93
89
  version: "0"
90
+ name: rake
91
+ prerelease: false
92
+ type: :development
94
93
  requirement: *id005
95
94
  - !ruby/object:Gem::Dependency
96
- type: :development
97
- prerelease: false
98
- name: jeweler
99
95
  version_requirements: &id006 !ruby/object:Gem::Requirement
100
96
  none: false
101
97
  requirements:
@@ -105,11 +101,11 @@ dependencies:
105
101
  segments:
106
102
  - 0
107
103
  version: "0"
104
+ name: rake-compiler
105
+ prerelease: false
106
+ type: :development
108
107
  requirement: *id006
109
108
  - !ruby/object:Gem::Dependency
110
- type: :development
111
- prerelease: false
112
- name: yard
113
109
  version_requirements: &id007 !ruby/object:Gem::Requirement
114
110
  none: false
115
111
  requirements:
@@ -119,11 +115,11 @@ dependencies:
119
115
  segments:
120
116
  - 0
121
117
  version: "0"
118
+ name: jeweler
119
+ prerelease: false
120
+ type: :development
122
121
  requirement: *id007
123
122
  - !ruby/object:Gem::Dependency
124
- type: :development
125
- prerelease: false
126
- name: packnga
127
123
  version_requirements: &id008 !ruby/object:Gem::Requirement
128
124
  none: false
129
125
  requirements:
@@ -133,7 +129,24 @@ dependencies:
133
129
  segments:
134
130
  - 0
135
131
  version: "0"
132
+ name: yard
133
+ prerelease: false
134
+ type: :development
136
135
  requirement: *id008
136
+ - !ruby/object:Gem::Dependency
137
+ version_requirements: &id009 !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ hash: 3
143
+ segments:
144
+ - 0
145
+ version: "0"
146
+ name: packnga
147
+ prerelease: false
148
+ type: :development
149
+ requirement: *id009
137
150
  description: |-
138
151
  rroonga is an extension library to use groonga's DB-API
139
152
  layer. rroonga provides Rubyish readable and writable API
@@ -143,7 +156,9 @@ email:
143
156
  - groonga-users-en@rubyforge.org
144
157
  - groonga-dev@lists.sourceforge.jp
145
158
  executables:
159
+ - grntest-log-analyze
146
160
  - grndump
161
+ - groonga-query-log-extract
147
162
  extensions:
148
163
  - ext/groonga/extconf.rb
149
164
  extra_rdoc_files:
@@ -159,9 +174,10 @@ files:
159
174
  - benchmark/select.rb
160
175
  - benchmark/write-many-small-items.rb
161
176
  - bin/grndump
177
+ - bin/grntest-log-analyze
178
+ - bin/groonga-query-log-extract
162
179
  - example/bookmark.rb
163
180
  - example/index-html.rb
164
- - ext/groonga/Makefile
165
181
  - ext/groonga/extconf.rb
166
182
  - ext/groonga/groonga.def
167
183
  - ext/groonga/rb-grn-accessor.c
@@ -170,6 +186,8 @@ files:
170
186
  - ext/groonga/rb-grn-column.c
171
187
  - ext/groonga/rb-grn-context.c
172
188
  - ext/groonga/rb-grn-database.c
189
+ - ext/groonga/rb-grn-double-array-trie-cursor.c
190
+ - ext/groonga/rb-grn-double-array-trie.c
173
191
  - ext/groonga/rb-grn-encoding-support.c
174
192
  - ext/groonga/rb-grn-encoding.c
175
193
  - ext/groonga/rb-grn-exception.c
@@ -211,9 +229,11 @@ files:
211
229
  - lib/groonga/dumper.rb
212
230
  - lib/groonga/expression-builder-19.rb
213
231
  - lib/groonga/expression-builder.rb
232
+ - lib/groonga/grntest-log.rb
214
233
  - lib/groonga/pagination.rb
215
234
  - lib/groonga/patricia-trie.rb
216
235
  - lib/groonga/posting.rb
236
+ - lib/groonga/query-log.rb
217
237
  - lib/groonga/record.rb
218
238
  - lib/groonga/schema.rb
219
239
  - lib/groonga/view-record.rb
@@ -221,53 +241,54 @@ files:
221
241
  - rroonga-build.rb
222
242
  - README.textile
223
243
  - TODO
224
- - test/test-database.rb
225
- - test/test-array.rb
226
- - test/test-table-offset-and-limit.rb
227
- - test/run-test.rb
228
- - test/test-schema-type.rb
229
244
  - test/test-remote.rb
230
245
  - test/test-table-cursor.rb
231
- - test/test-table-select.rb
246
+ - test/test-accessor.rb
247
+ - test/test-database-dumper.rb
248
+ - test/test-index-column.rb
249
+ - test/test-context-select.rb
250
+ - test/groonga-test-utils.rb
251
+ - test/test-pagination.rb
252
+ - test/test-table.rb
253
+ - test/test-variable-size-column.rb
254
+ - test/test-plugin.rb
255
+ - test/test-hash.rb
232
256
  - test/test-encoding.rb
257
+ - test/test-schema-create-table.rb
233
258
  - test/test-type.rb
234
- - test/test-table.rb
235
- - test/test-query.rb
236
- - test/test-table-select-weight.rb
259
+ - test/test-database.rb
260
+ - test/test-variable.rb
261
+ - test/test-table-select.rb
262
+ - test/test-patricia-trie.rb
237
263
  - test/test-expression-builder.rb
238
- - test/test-exception.rb
239
- - test/test-plugin.rb
240
- - test/test-schema-view.rb
264
+ - test/test-logger.rb
265
+ - test/test-array.rb
266
+ - test/test-record.rb
267
+ - test/test-column.rb
268
+ - test/test-fix-size-column.rb
269
+ - test/run-test.rb
241
270
  - test/test-procedure.rb
242
- - test/test-snippet.rb
243
- - test/groonga-test-utils.rb
244
- - test/test-variable-size-column.rb
245
- - test/test-database-dumper.rb
246
- - test/test-pagination.rb
247
- - test/test-variable.rb
248
- - test/test-version.rb
271
+ - test/test-query-log.rb
249
272
  - test/test-table-dumper.rb
250
- - test/test-vector-column.rb
251
- - test/test-schema-dumper.rb
252
- - test/test-hash.rb
253
- - test/test-logger.rb
254
- - test/test-view.rb
255
273
  - test/test-schema.rb
256
- - test/test-accessor.rb
274
+ - test/test-view.rb
257
275
  - test/test-table-select-mecab.rb
258
276
  - test/test-table-select-normalize.rb
259
- - test/test-index-cursor.rb
260
- - test/test-fix-size-column.rb
261
- - test/test-schema-create-table.rb
262
- - test/test-context-select.rb
263
277
  - test/test-expression.rb
278
+ - test/test-vector-column.rb
279
+ - test/test-version.rb
280
+ - test/test-schema-view.rb
281
+ - test/test-index-cursor.rb
282
+ - test/test-double-array-trie.rb
283
+ - test/test-exception.rb
284
+ - test/test-schema-dumper.rb
285
+ - test/test-query.rb
286
+ - test/test-schema-type.rb
287
+ - test/test-table-select-weight.rb
264
288
  - test/test-gqtp.rb
265
289
  - test/test-context.rb
266
- - test/test-record.rb
267
- - test/test-column.rb
268
- - test/test-index-column.rb
269
- - test/test-patricia-trie.rb
270
- has_rdoc: true
290
+ - test/test-snippet.rb
291
+ - test/test-table-offset-and-limit.rb
271
292
  homepage: http://groonga.rubyforge.org/
272
293
  licenses:
273
294
  - LGPLv2
@@ -297,54 +318,56 @@ required_rubygems_version: !ruby/object:Gem::Requirement
297
318
  requirements: []
298
319
 
299
320
  rubyforge_project: groonga
300
- rubygems_version: 1.3.7
321
+ rubygems_version: 1.8.10
301
322
  signing_key:
302
323
  specification_version: 3
303
324
  summary: Ruby bindings for groonga that provide full text search and column store features.
304
325
  test_files:
305
- - test/test-database.rb
306
- - test/test-array.rb
307
- - test/test-table-offset-and-limit.rb
308
- - test/run-test.rb
309
- - test/test-schema-type.rb
310
326
  - test/test-remote.rb
311
327
  - test/test-table-cursor.rb
312
- - test/test-table-select.rb
328
+ - test/test-accessor.rb
329
+ - test/test-database-dumper.rb
330
+ - test/test-index-column.rb
331
+ - test/test-context-select.rb
332
+ - test/groonga-test-utils.rb
333
+ - test/test-pagination.rb
334
+ - test/test-table.rb
335
+ - test/test-variable-size-column.rb
336
+ - test/test-plugin.rb
337
+ - test/test-hash.rb
313
338
  - test/test-encoding.rb
339
+ - test/test-schema-create-table.rb
314
340
  - test/test-type.rb
315
- - test/test-table.rb
316
- - test/test-query.rb
317
- - test/test-table-select-weight.rb
341
+ - test/test-database.rb
342
+ - test/test-variable.rb
343
+ - test/test-table-select.rb
344
+ - test/test-patricia-trie.rb
318
345
  - test/test-expression-builder.rb
319
- - test/test-exception.rb
320
- - test/test-plugin.rb
321
- - test/test-schema-view.rb
346
+ - test/test-logger.rb
347
+ - test/test-array.rb
348
+ - test/test-record.rb
349
+ - test/test-column.rb
350
+ - test/test-fix-size-column.rb
351
+ - test/run-test.rb
322
352
  - test/test-procedure.rb
323
- - test/test-snippet.rb
324
- - test/groonga-test-utils.rb
325
- - test/test-variable-size-column.rb
326
- - test/test-database-dumper.rb
327
- - test/test-pagination.rb
328
- - test/test-variable.rb
329
- - test/test-version.rb
353
+ - test/test-query-log.rb
330
354
  - test/test-table-dumper.rb
331
- - test/test-vector-column.rb
332
- - test/test-schema-dumper.rb
333
- - test/test-hash.rb
334
- - test/test-logger.rb
335
- - test/test-view.rb
336
355
  - test/test-schema.rb
337
- - test/test-accessor.rb
356
+ - test/test-view.rb
338
357
  - test/test-table-select-mecab.rb
339
358
  - test/test-table-select-normalize.rb
340
- - test/test-index-cursor.rb
341
- - test/test-fix-size-column.rb
342
- - test/test-schema-create-table.rb
343
- - test/test-context-select.rb
344
359
  - test/test-expression.rb
360
+ - test/test-vector-column.rb
361
+ - test/test-version.rb
362
+ - test/test-schema-view.rb
363
+ - test/test-index-cursor.rb
364
+ - test/test-double-array-trie.rb
365
+ - test/test-exception.rb
366
+ - test/test-schema-dumper.rb
367
+ - test/test-query.rb
368
+ - test/test-schema-type.rb
369
+ - test/test-table-select-weight.rb
345
370
  - test/test-gqtp.rb
346
371
  - test/test-context.rb
347
- - test/test-record.rb
348
- - test/test-column.rb
349
- - test/test-index-column.rb
350
- - test/test-patricia-trie.rb
372
+ - test/test-snippet.rb
373
+ - test/test-table-offset-and-limit.rb