rroonga 3.0.5 → 3.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/AUTHORS +5 -0
  2. data/Gemfile +20 -0
  3. data/Rakefile +187 -0
  4. data/doc/text/news.textile +10 -2
  5. data/doc/text/tutorial.textile +0 -2
  6. data/ext/groonga/extconf.rb +7 -1
  7. data/ext/groonga/rb-grn-accessor.c +11 -11
  8. data/ext/groonga/rb-grn-array.c +25 -25
  9. data/ext/groonga/rb-grn-column.c +106 -106
  10. data/ext/groonga/rb-grn-context.c +121 -121
  11. data/ext/groonga/rb-grn-database.c +78 -78
  12. data/ext/groonga/rb-grn-double-array-trie.c +92 -92
  13. data/ext/groonga/rb-grn-encoding-support.c +1 -1
  14. data/ext/groonga/rb-grn-encoding.c +28 -28
  15. data/ext/groonga/rb-grn-exception.c +9 -9
  16. data/ext/groonga/rb-grn-expression-builder.c +6 -6
  17. data/ext/groonga/rb-grn-expression.c +87 -87
  18. data/ext/groonga/rb-grn-fix-size-column.c +12 -12
  19. data/ext/groonga/rb-grn-geo-point.c +2 -2
  20. data/ext/groonga/rb-grn-hash.c +38 -38
  21. data/ext/groonga/rb-grn-index-column.c +191 -191
  22. data/ext/groonga/rb-grn-index-cursor.c +29 -29
  23. data/ext/groonga/rb-grn-logger.c +36 -36
  24. data/ext/groonga/rb-grn-normalizer.c +10 -10
  25. data/ext/groonga/rb-grn-patricia-trie.c +196 -196
  26. data/ext/groonga/rb-grn-plugin.c +5 -5
  27. data/ext/groonga/rb-grn-posting.c +2 -2
  28. data/ext/groonga/rb-grn-procedure.c +2 -2
  29. data/ext/groonga/rb-grn-query-logger.c +1 -1
  30. data/ext/groonga/rb-grn-record.c +1 -1
  31. data/ext/groonga/rb-grn-snippet.c +14 -14
  32. data/ext/groonga/rb-grn-table-cursor-key-support.c +4 -4
  33. data/ext/groonga/rb-grn-table-cursor.c +52 -52
  34. data/ext/groonga/rb-grn-table-key-support.c +209 -209
  35. data/ext/groonga/rb-grn-type.c +18 -18
  36. data/ext/groonga/rb-grn-utils.c +332 -314
  37. data/ext/groonga/rb-grn-variable-size-column.c +34 -34
  38. data/ext/groonga/rb-grn-variable.c +2 -2
  39. data/ext/groonga/rb-grn.h +240 -232
  40. data/ext/groonga/rb-groonga.c +10 -10
  41. data/rroonga-build.rb +7 -0
  42. data/rroonga.gemspec +1 -1
  43. data/test/test-hash.rb +4 -4
  44. data/test/test-index-column.rb +271 -257
  45. data/test/test-table-key-support.rb +78 -0
  46. data/test/test-table.rb +78 -51
  47. metadata +195 -164
  48. checksums.yaml +0 -7
metadata CHANGED
@@ -1,7 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rroonga
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.5
4
+ version: 3.0.6
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Kouhei Sutou
@@ -12,167 +13,191 @@ authors:
12
13
  autorequire:
13
14
  bindir: bin
14
15
  cert_chain: []
15
- date: 2013-07-29 00:00:00.000000000 Z
16
+ date: 2013-09-13 00:00:00.000000000 Z
16
17
  dependencies:
17
18
  - !ruby/object:Gem::Dependency
18
19
  name: pkg-config
19
20
  requirement: !ruby/object:Gem::Requirement
21
+ none: false
20
22
  requirements:
21
- - - '>='
23
+ - - ! '>='
22
24
  - !ruby/object:Gem::Version
23
25
  version: '0'
24
26
  type: :runtime
25
27
  prerelease: false
26
28
  version_requirements: !ruby/object:Gem::Requirement
29
+ none: false
27
30
  requirements:
28
- - - '>='
31
+ - - ! '>='
29
32
  - !ruby/object:Gem::Version
30
33
  version: '0'
31
34
  - !ruby/object:Gem::Dependency
32
35
  name: json
33
36
  requirement: !ruby/object:Gem::Requirement
37
+ none: false
34
38
  requirements:
35
- - - '>='
39
+ - - ! '>='
36
40
  - !ruby/object:Gem::Version
37
41
  version: '0'
38
42
  type: :runtime
39
43
  prerelease: false
40
44
  version_requirements: !ruby/object:Gem::Requirement
45
+ none: false
41
46
  requirements:
42
- - - '>='
47
+ - - ! '>='
43
48
  - !ruby/object:Gem::Version
44
49
  version: '0'
45
50
  - !ruby/object:Gem::Dependency
46
51
  name: archive-zip
47
52
  requirement: !ruby/object:Gem::Requirement
53
+ none: false
48
54
  requirements:
49
- - - '>='
55
+ - - ! '>='
50
56
  - !ruby/object:Gem::Version
51
57
  version: '0'
52
58
  type: :runtime
53
59
  prerelease: false
54
60
  version_requirements: !ruby/object:Gem::Requirement
61
+ none: false
55
62
  requirements:
56
- - - '>='
63
+ - - ! '>='
57
64
  - !ruby/object:Gem::Version
58
65
  version: '0'
59
66
  - !ruby/object:Gem::Dependency
60
67
  name: test-unit
61
68
  requirement: !ruby/object:Gem::Requirement
69
+ none: false
62
70
  requirements:
63
- - - '>='
71
+ - - ! '>='
64
72
  - !ruby/object:Gem::Version
65
73
  version: 2.4.6
66
74
  type: :development
67
75
  prerelease: false
68
76
  version_requirements: !ruby/object:Gem::Requirement
77
+ none: false
69
78
  requirements:
70
- - - '>='
79
+ - - ! '>='
71
80
  - !ruby/object:Gem::Version
72
81
  version: 2.4.6
73
82
  - !ruby/object:Gem::Dependency
74
83
  name: test-unit-notify
75
84
  requirement: !ruby/object:Gem::Requirement
85
+ none: false
76
86
  requirements:
77
- - - '>='
87
+ - - ! '>='
78
88
  - !ruby/object:Gem::Version
79
89
  version: '0'
80
90
  type: :development
81
91
  prerelease: false
82
92
  version_requirements: !ruby/object:Gem::Requirement
93
+ none: false
83
94
  requirements:
84
- - - '>='
95
+ - - ! '>='
85
96
  - !ruby/object:Gem::Version
86
97
  version: '0'
87
98
  - !ruby/object:Gem::Dependency
88
99
  name: rake
89
100
  requirement: !ruby/object:Gem::Requirement
101
+ none: false
90
102
  requirements:
91
- - - '>='
103
+ - - ! '>='
92
104
  - !ruby/object:Gem::Version
93
105
  version: '0'
94
106
  type: :development
95
107
  prerelease: false
96
108
  version_requirements: !ruby/object:Gem::Requirement
109
+ none: false
97
110
  requirements:
98
- - - '>='
111
+ - - ! '>='
99
112
  - !ruby/object:Gem::Version
100
113
  version: '0'
101
114
  - !ruby/object:Gem::Dependency
102
115
  name: rake-compiler
103
116
  requirement: !ruby/object:Gem::Requirement
117
+ none: false
104
118
  requirements:
105
- - - '>='
119
+ - - ! '>='
106
120
  - !ruby/object:Gem::Version
107
121
  version: '0'
108
122
  type: :development
109
123
  prerelease: false
110
124
  version_requirements: !ruby/object:Gem::Requirement
125
+ none: false
111
126
  requirements:
112
- - - '>='
127
+ - - ! '>='
113
128
  - !ruby/object:Gem::Version
114
129
  version: '0'
115
130
  - !ruby/object:Gem::Dependency
116
131
  name: bundler
117
132
  requirement: !ruby/object:Gem::Requirement
133
+ none: false
118
134
  requirements:
119
- - - '>='
135
+ - - ! '>='
120
136
  - !ruby/object:Gem::Version
121
137
  version: '0'
122
138
  type: :development
123
139
  prerelease: false
124
140
  version_requirements: !ruby/object:Gem::Requirement
141
+ none: false
125
142
  requirements:
126
- - - '>='
143
+ - - ! '>='
127
144
  - !ruby/object:Gem::Version
128
145
  version: '0'
129
146
  - !ruby/object:Gem::Dependency
130
147
  name: yard
131
148
  requirement: !ruby/object:Gem::Requirement
149
+ none: false
132
150
  requirements:
133
- - - '>='
151
+ - - ! '>='
134
152
  - !ruby/object:Gem::Version
135
153
  version: '0'
136
154
  type: :development
137
155
  prerelease: false
138
156
  version_requirements: !ruby/object:Gem::Requirement
157
+ none: false
139
158
  requirements:
140
- - - '>='
159
+ - - ! '>='
141
160
  - !ruby/object:Gem::Version
142
161
  version: '0'
143
162
  - !ruby/object:Gem::Dependency
144
163
  name: packnga
145
164
  requirement: !ruby/object:Gem::Requirement
165
+ none: false
146
166
  requirements:
147
- - - '>='
167
+ - - ! '>='
148
168
  - !ruby/object:Gem::Version
149
169
  version: 0.9.7
150
170
  type: :development
151
171
  prerelease: false
152
172
  version_requirements: !ruby/object:Gem::Requirement
173
+ none: false
153
174
  requirements:
154
- - - '>='
175
+ - - ! '>='
155
176
  - !ruby/object:Gem::Version
156
177
  version: 0.9.7
157
178
  - !ruby/object:Gem::Dependency
158
179
  name: RedCloth
159
180
  requirement: !ruby/object:Gem::Requirement
181
+ none: false
160
182
  requirements:
161
- - - '>='
183
+ - - ! '>='
162
184
  - !ruby/object:Gem::Version
163
185
  version: '0'
164
186
  type: :development
165
187
  prerelease: false
166
188
  version_requirements: !ruby/object:Gem::Requirement
189
+ none: false
167
190
  requirements:
168
- - - '>='
191
+ - - ! '>='
169
192
  - !ruby/object:Gem::Version
170
193
  version: '0'
171
- description: |-
172
- rroonga is an extension library to use groonga's DB-API
194
+ description: ! 'rroonga is an extension library to use groonga''s DB-API
195
+
173
196
  layer. rroonga provides Rubyish readable and writable API
174
- not C like API. You can use groonga's fast and highly
175
- functional features from Ruby with Rubyish form.
197
+
198
+ not C like API. You can use groonga''s fast and highly
199
+
200
+ functional features from Ruby with Rubyish form.'
176
201
  email:
177
202
  - kou@clear-code.com
178
203
  - a@razil.jp
@@ -180,218 +205,224 @@ email:
180
205
  - y.hayamizu@gmail.com
181
206
  - dara@shidara.net
182
207
  executables:
183
- - grndump
184
- - grntest-log-analyze
185
208
  - groonga-index-dump
209
+ - grntest-log-analyze
210
+ - grndump
186
211
  extensions:
187
212
  - ext/groonga/extconf.rb
188
213
  extra_rdoc_files:
189
214
  - README.textile
190
215
  files:
216
+ - README.textile
217
+ - AUTHORS
218
+ - Rakefile
219
+ - Gemfile
191
220
  - doc/text/news.textile
192
221
  - doc/text/tutorial.textile
193
222
  - rroonga.gemspec
194
223
  - rroonga-build.rb
195
224
  - extconf.rb
196
- - lib/groonga/dumper.rb
197
- - lib/groonga/posting.rb
198
- - lib/groonga/record.rb
199
- - lib/groonga/sub-records.rb
200
- - lib/groonga/patricia-trie.rb
201
- - lib/groonga/expression-builder.rb
202
225
  - lib/groonga/schema.rb
203
- - lib/groonga/memory-pool.rb
204
- - lib/groonga/expression-builder-19.rb
205
- - lib/groonga/view-record.rb
206
- - lib/groonga/command.rb
207
- - lib/groonga/context.rb
208
226
  - lib/groonga/database.rb
209
- - lib/groonga/query-logger.rb
227
+ - lib/groonga/geo-point.rb
228
+ - lib/groonga/expression-builder-19.rb
229
+ - lib/groonga/sub-records.rb
210
230
  - lib/groonga/pagination.rb
211
231
  - lib/groonga/index-column.rb
232
+ - lib/groonga/view-record.rb
233
+ - lib/groonga/patricia-trie.rb
212
234
  - lib/groonga/grntest-log.rb
213
- - lib/groonga/geo-point.rb
235
+ - lib/groonga/command.rb
236
+ - lib/groonga/dumper.rb
237
+ - lib/groonga/posting.rb
238
+ - lib/groonga/memory-pool.rb
239
+ - lib/groonga/query-logger.rb
240
+ - lib/groonga/context.rb
241
+ - lib/groonga/record.rb
242
+ - lib/groonga/expression-builder.rb
214
243
  - lib/groonga/logger.rb
215
244
  - lib/groonga.rb
216
- - benchmark/write-many-small-items.rb
217
245
  - benchmark/common.rb
218
- - benchmark/create-wikipedia-database.rb
219
246
  - benchmark/repeat-load.rb
220
- - benchmark/select.rb
221
247
  - benchmark/read-write-many-small-items.rb
248
+ - benchmark/create-wikipedia-database.rb
249
+ - benchmark/write-many-small-items.rb
250
+ - benchmark/select.rb
222
251
  - misc/grnop2ruby.rb
223
252
  - example/index-html.rb
224
253
  - example/bookmark.rb
225
- - ext/groonga/rb-grn-type.c
226
- - ext/groonga/rb-grn-context.c
227
- - ext/groonga/rb-grn-geo-point.c
228
- - ext/groonga/rb-grn-table-cursor.c
229
- - ext/groonga/rb-grn-encoding-support.c
230
- - ext/groonga/rb-grn-normalizer.c
231
- - ext/groonga/rb-grn-plugin.c
254
+ - ext/groonga/rb-grn-procedure.c
232
255
  - ext/groonga/rb-grn-column.c
233
- - ext/groonga/rb-grn-patricia-trie.c
234
- - ext/groonga/rb-grn-hash.c
235
- - ext/groonga/rb-grn-hash-cursor.c
236
- - ext/groonga/rb-grn-database.c
237
- - ext/groonga/rb-grn-array.c
238
- - ext/groonga/rb-grn-fix-size-column.c
239
- - ext/groonga/rb-grn-record.c
240
- - ext/groonga/rb-grn-index-cursor.c
256
+ - ext/groonga/rb-grn-index-column.c
257
+ - ext/groonga/rb-grn-encoding-support.c
241
258
  - ext/groonga/rb-grn-variable.c
242
- - ext/groonga/rb-grn-logger.c
243
- - ext/groonga/rb-grn-expression.c
244
- - ext/groonga/rb-groonga.c
245
- - ext/groonga/rb-grn-expression-builder.c
246
- - ext/groonga/rb-grn-procedure.c
247
- - ext/groonga/rb-grn-encoding.c
259
+ - ext/groonga/rb-grn-table.c
260
+ - ext/groonga/rb-grn-hash-cursor.c
261
+ - ext/groonga/rb-grn-table-cursor-key-support.c
248
262
  - ext/groonga/rb-grn-object.c
249
- - ext/groonga/rb-grn-index-column.c
250
263
  - ext/groonga/rb-grn-double-array-trie.c
251
- - ext/groonga/rb-grn-accessor.c
252
- - ext/groonga/rb-grn-table-cursor-key-support.c
253
- - ext/groonga/rb-grn-posting.c
254
- - ext/groonga/rb-grn-exception.c
255
- - ext/groonga/rb-grn-query-logger.c
256
264
  - ext/groonga/rb-grn-table-key-support.c
257
- - ext/groonga/rb-grn-table.c
265
+ - ext/groonga/rb-grn-array.c
266
+ - ext/groonga/rb-grn-patricia-trie.c
267
+ - ext/groonga/rb-grn-double-array-trie-cursor.c
258
268
  - ext/groonga/rb-grn-utils.c
259
- - ext/groonga/rb-grn-array-cursor.c
260
- - ext/groonga/rb-grn-snippet.c
261
- - ext/groonga/rb-grn-operator.c
269
+ - ext/groonga/rb-grn-record.c
270
+ - ext/groonga/rb-grn-normalizer.c
271
+ - ext/groonga/rb-groonga.c
272
+ - ext/groonga/rb-grn-exception.c
262
273
  - ext/groonga/rb-grn-variable-size-column.c
263
- - ext/groonga/rb-grn-double-array-trie-cursor.c
274
+ - ext/groonga/rb-grn-encoding.c
275
+ - ext/groonga/rb-grn-geo-point.c
276
+ - ext/groonga/rb-grn-expression-builder.c
277
+ - ext/groonga/rb-grn-operator.c
278
+ - ext/groonga/rb-grn-snippet.c
279
+ - ext/groonga/rb-grn-array-cursor.c
280
+ - ext/groonga/rb-grn-type.c
281
+ - ext/groonga/rb-grn-table-cursor.c
282
+ - ext/groonga/rb-grn-fix-size-column.c
283
+ - ext/groonga/rb-grn-logger.c
284
+ - ext/groonga/rb-grn-plugin.c
285
+ - ext/groonga/rb-grn-database.c
264
286
  - ext/groonga/rb-grn-patricia-trie-cursor.c
287
+ - ext/groonga/rb-grn-index-cursor.c
288
+ - ext/groonga/rb-grn-accessor.c
289
+ - ext/groonga/rb-grn-context.c
290
+ - ext/groonga/rb-grn-query-logger.c
291
+ - ext/groonga/rb-grn-posting.c
292
+ - ext/groonga/rb-grn-expression.c
293
+ - ext/groonga/rb-grn-hash.c
265
294
  - ext/groonga/rb-grn.h
266
295
  - ext/groonga/extconf.rb
267
296
  - ext/groonga/groonga.def
268
- - README.textile
269
- - test/groonga-test-utils.rb
270
- - test/test-table-select-normalize.rb
271
- - test/test-record.rb
272
- - test/test-database.rb
297
+ - test/test-normalizer.rb
298
+ - test/test-schema.rb
299
+ - test/test-vector-column.rb
300
+ - test/test-schema-dumper.rb
301
+ - test/run-test.rb
302
+ - test/test-procedure.rb
303
+ - test/test-hash.rb
304
+ - test/test-expression.rb
273
305
  - test/test-version.rb
274
- - test/test-convert.rb
275
306
  - test/test-remote.rb
276
- - test/test-sub-records.rb
277
- - test/test-plugin.rb
278
- - test/test-schema-type.rb
279
307
  - test/test-table-offset-and-limit.rb
280
- - test/test-command-select.rb
281
- - test/test-expression.rb
308
+ - test/test-expression-builder.rb
309
+ - test/test-sub-records.rb
282
310
  - test/test-encoding.rb
283
- - test/test-schema.rb
284
- - test/test-variable-size-column.rb
285
- - test/test-exception.rb
286
- - test/test-double-array-trie.rb
287
- - test/test-accessor.rb
288
- - test/run-test.rb
289
- - test/test-context.rb
290
- - test/test-table-select-mecab.rb
291
- - test/test-schema-create-table.rb
292
- - test/test-table-select.rb
293
- - test/test-hash.rb
294
- - test/test-table-traverse.rb
295
- - test/test-table-dumper.rb
296
- - test/test-gqtp.rb
297
- - test/test-patricia-trie.rb
298
- - test/test-normalizer.rb
299
- - test/test-geo-point.rb
311
+ - test/test-snippet.rb
312
+ - test/test-index-cursor.rb
300
313
  - test/test-type.rb
314
+ - test/test-table-dumper.rb
315
+ - test/test-table-traverse.rb
316
+ - test/test-convert.rb
301
317
  - test/test-table.rb
302
- - test/test-vector-column.rb
303
- - test/test-index-cursor.rb
304
- - test/test-array.rb
305
- - test/test-procedure.rb
306
- - test/test-schema-dumper.rb
307
- - test/test-fix-size-column.rb
308
- - test/test-column.rb
309
- - test/test-expression-builder.rb
310
- - test/test-index-column.rb
311
- - test/test-database-dumper.rb
312
- - test/test-snippet.rb
318
+ - test/test-pagination.rb
319
+ - test/groonga-test-utils.rb
313
320
  - test/test-logger.rb
321
+ - test/test-context.rb
314
322
  - test/test-memory-pool.rb
315
- - test/test-pagination.rb
316
323
  - test/test-table-select-weight.rb
324
+ - test/test-exception.rb
325
+ - test/test-table-select-normalize.rb
326
+ - test/test-command-select.rb
327
+ - test/test-gqtp.rb
328
+ - test/test-database-dumper.rb
329
+ - test/test-index-column.rb
330
+ - test/test-geo-point.rb
331
+ - test/test-plugin.rb
332
+ - test/test-variable-size-column.rb
333
+ - test/test-schema-create-table.rb
334
+ - test/test-array.rb
335
+ - test/test-fix-size-column.rb
336
+ - test/test-table-key-support.rb
337
+ - test/test-schema-type.rb
338
+ - test/test-table-select.rb
317
339
  - test/test-variable.rb
318
- - bin/grndump
319
- - bin/grntest-log-analyze
340
+ - test/test-column.rb
341
+ - test/test-patricia-trie.rb
342
+ - test/test-table-select-mecab.rb
343
+ - test/test-accessor.rb
344
+ - test/test-database.rb
345
+ - test/test-double-array-trie.rb
346
+ - test/test-record.rb
320
347
  - bin/groonga-index-dump
348
+ - bin/grntest-log-analyze
349
+ - bin/grndump
321
350
  homepage: http://groonga.rubyforge.org/#about-rroonga
322
351
  licenses:
323
352
  - LGPLv2
324
- metadata: {}
325
353
  post_install_message:
326
354
  rdoc_options: []
327
355
  require_paths:
328
356
  - lib
329
357
  - ext/groonga
330
358
  required_ruby_version: !ruby/object:Gem::Requirement
359
+ none: false
331
360
  requirements:
332
- - - '>='
361
+ - - ! '>='
333
362
  - !ruby/object:Gem::Version
334
363
  version: 1.9.3
335
364
  required_rubygems_version: !ruby/object:Gem::Requirement
365
+ none: false
336
366
  requirements:
337
- - - '>='
367
+ - - ! '>='
338
368
  - !ruby/object:Gem::Version
339
369
  version: '0'
340
370
  requirements: []
341
371
  rubyforge_project: groonga
342
- rubygems_version: 2.0.2
372
+ rubygems_version: 1.8.23
343
373
  signing_key:
344
- specification_version: 4
374
+ specification_version: 3
345
375
  summary: Ruby bindings for groonga that provide full text search and column store
346
376
  features.
347
377
  test_files:
348
- - test/groonga-test-utils.rb
349
- - test/test-table-select-normalize.rb
350
- - test/test-record.rb
351
- - test/test-database.rb
378
+ - test/test-normalizer.rb
379
+ - test/test-schema.rb
380
+ - test/test-vector-column.rb
381
+ - test/test-schema-dumper.rb
382
+ - test/run-test.rb
383
+ - test/test-procedure.rb
384
+ - test/test-hash.rb
385
+ - test/test-expression.rb
352
386
  - test/test-version.rb
353
- - test/test-convert.rb
354
387
  - test/test-remote.rb
355
- - test/test-sub-records.rb
356
- - test/test-plugin.rb
357
- - test/test-schema-type.rb
358
388
  - test/test-table-offset-and-limit.rb
359
- - test/test-command-select.rb
360
- - test/test-expression.rb
389
+ - test/test-expression-builder.rb
390
+ - test/test-sub-records.rb
361
391
  - test/test-encoding.rb
362
- - test/test-schema.rb
363
- - test/test-variable-size-column.rb
364
- - test/test-exception.rb
365
- - test/test-double-array-trie.rb
366
- - test/test-accessor.rb
367
- - test/run-test.rb
368
- - test/test-context.rb
369
- - test/test-table-select-mecab.rb
370
- - test/test-schema-create-table.rb
371
- - test/test-table-select.rb
372
- - test/test-hash.rb
373
- - test/test-table-traverse.rb
374
- - test/test-table-dumper.rb
375
- - test/test-gqtp.rb
376
- - test/test-patricia-trie.rb
377
- - test/test-normalizer.rb
378
- - test/test-geo-point.rb
392
+ - test/test-snippet.rb
393
+ - test/test-index-cursor.rb
379
394
  - test/test-type.rb
395
+ - test/test-table-dumper.rb
396
+ - test/test-table-traverse.rb
397
+ - test/test-convert.rb
380
398
  - test/test-table.rb
381
- - test/test-vector-column.rb
382
- - test/test-index-cursor.rb
383
- - test/test-array.rb
384
- - test/test-procedure.rb
385
- - test/test-schema-dumper.rb
386
- - test/test-fix-size-column.rb
387
- - test/test-column.rb
388
- - test/test-expression-builder.rb
389
- - test/test-index-column.rb
390
- - test/test-database-dumper.rb
391
- - test/test-snippet.rb
399
+ - test/test-pagination.rb
400
+ - test/groonga-test-utils.rb
392
401
  - test/test-logger.rb
402
+ - test/test-context.rb
393
403
  - test/test-memory-pool.rb
394
- - test/test-pagination.rb
395
404
  - test/test-table-select-weight.rb
405
+ - test/test-exception.rb
406
+ - test/test-table-select-normalize.rb
407
+ - test/test-command-select.rb
408
+ - test/test-gqtp.rb
409
+ - test/test-database-dumper.rb
410
+ - test/test-index-column.rb
411
+ - test/test-geo-point.rb
412
+ - test/test-plugin.rb
413
+ - test/test-variable-size-column.rb
414
+ - test/test-schema-create-table.rb
415
+ - test/test-array.rb
416
+ - test/test-fix-size-column.rb
417
+ - test/test-table-key-support.rb
418
+ - test/test-schema-type.rb
419
+ - test/test-table-select.rb
396
420
  - test/test-variable.rb
421
+ - test/test-column.rb
422
+ - test/test-patricia-trie.rb
423
+ - test/test-table-select-mecab.rb
424
+ - test/test-accessor.rb
425
+ - test/test-database.rb
426
+ - test/test-double-array-trie.rb
427
+ - test/test-record.rb
397
428
  has_rdoc:
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: d8f4ced83e2b9234d24a57f3e2e89bfcbf5166b2
4
- data.tar.gz: e3a8bf46124b0a9314230d52cf3eb38cbe81cb3c
5
- SHA512:
6
- metadata.gz: 1c3b11dc02d8fc27255fe42bca26eb886ffccae0b8aaf32cb6aa906fd47d39acab72d663b1131a24805c6317b66706a82b86ab78d2cc5c1f4395a60e0a7050fb
7
- data.tar.gz: d5e02e35e55f8adc5eb99931a109e3a80725bfa0fe941885fda89c863e03d6c9b2730766fa060caaf5b20cb825cae816cc7dcee8cd2205c11502e4f9fd33c264