groonga-query-log 1.1.8 → 1.1.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: aaabf9dcf5e2c0d920723823b2af18b26c294833
4
- data.tar.gz: dd30e8dd1b30eaf4b6826b27d5cce8a005b04e7d
3
+ metadata.gz: 19db4dbc5d30a42ab59bcf8f53ac7a0979868eec
4
+ data.tar.gz: c5246d85603fff8aef80ddc32bae71ecdde03572
5
5
  SHA512:
6
- metadata.gz: 03c75ec34ed6ba0a8e2c847af95c6ec2394d8621eff4ad284319dc5fdf66e4cfe47f289d20e548ca9b64756038d13dda1bb36a49b52d7cc1dd480778b36a0eba
7
- data.tar.gz: 76996bcc32200f01073310d6ba1ed3f4c24b8d457f51fd9818f6a3132ddcf7e57182ce762bc5df82ccebc5cd0baab5f5f03328fb701adc5ad484989e38a077ba
6
+ metadata.gz: b96e3b574555936adb3d828abf724ed058e3235c52752b2448af96039882c472691c7437a133833a4f06936d6be77e8a7c028eb89e588cbddd548c3740b802dc
7
+ data.tar.gz: 086037f92e27646a62f7f488ec3fa36cb5b49b909d29b63c3603422a62abfbd76aaf85aa68205b3a6a619b82444e773ba9790763af2e32c99dec9365f581390a
@@ -1,5 +1,12 @@
1
1
  # News
2
2
 
3
+ ## 1.1.9: 2016-01-22
4
+
5
+ ### Fixes
6
+
7
+ * Fixed an error when parsing query log that includes
8
+ `logical_select` and `logical_range_filter`.
9
+
3
10
  ## 1.1.8: 2015-09-14
4
11
 
5
12
  ### Improvements
@@ -153,6 +153,8 @@ module Groonga
153
153
  end
154
154
 
155
155
  def operation_context(label, context)
156
+ return nil if @select_command.nil?
157
+
156
158
  case label
157
159
  when "filter"
158
160
  if @select_command.query and context[:query_used].nil?
@@ -1,6 +1,4 @@
1
- # -*- coding: utf-8 -*-
2
- #
3
- # Copyright (C) 2012-2015 Kouhei Sutou <kou@clear-code.com>
1
+ # Copyright (C) 2012-2016 Kouhei Sutou <kou@clear-code.com>
4
2
  #
5
3
  # This library is free software; you can redistribute it and/or
6
4
  # modify it under the terms of the GNU Lesser General Public
@@ -18,6 +16,6 @@
18
16
 
19
17
  module Groonga
20
18
  module QueryLog
21
- VERSION = "1.1.8"
19
+ VERSION = "1.1.9"
22
20
  end
23
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: groonga-query-log
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.8
4
+ version: 1.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-14 00:00:00.000000000 Z
11
+ date: 2016-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: groonga-command-parser
@@ -154,15 +154,15 @@ description: ''
154
154
  email:
155
155
  - kou@clear-code.com
156
156
  executables:
157
+ - groonga-query-log-replay
157
158
  - groonga-query-log-format-regression-test-logs
159
+ - groonga-query-log-show-running-queries
160
+ - groonga-query-log-detect-memory-leak
158
161
  - groonga-query-log-verify-server
159
- - groonga-query-log-extract
160
162
  - groonga-query-log-run-regression-test
161
163
  - groonga-query-log-check-command-version-compatibility
162
- - groonga-query-log-replay
163
- - groonga-query-log-show-running-queries
164
- - groonga-query-log-detect-memory-leak
165
164
  - groonga-query-log-analyze
165
+ - groonga-query-log-extract
166
166
  extensions: []
167
167
  extra_rdoc_files: []
168
168
  files:
@@ -255,7 +255,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
255
255
  version: '0'
256
256
  requirements: []
257
257
  rubyforge_project:
258
- rubygems_version: 2.2.2
258
+ rubygems_version: 2.4.5.1
259
259
  signing_key:
260
260
  specification_version: 4
261
261
  summary: Groonga-query-log is a collection of library and tools to process [Groonga](http://groonga.org/)'s
@@ -264,27 +264,27 @@ summary: Groonga-query-log is a collection of library and tools to process [Groo
264
264
  query log by using groonga-query-log as a tool.
265
265
  test_files:
266
266
  - test/test-analyzer.rb
267
- - test/test-parser.rb
268
- - test/test-response-comparer.rb
269
- - test/command/test-extract.rb
270
- - test/command/test-format-regression-test-logs.rb
271
- - test/fixtures/other-query.log
272
- - test/fixtures/reporter/console.expected
273
- - test/fixtures/reporter/html.expected
274
- - test/fixtures/reporter/json-stream.expected
275
- - test/fixtures/reporter/json.expected
276
- - test/fixtures/query.log
277
267
  - test/fixtures/multi.expected
278
- - test/fixtures/no-report-summary.expected
279
- - test/fixtures/regression-test-logs/url-format.log
280
- - test/fixtures/regression-test-logs/command-format.log
281
268
  - test/fixtures/n_entries.expected
269
+ - test/fixtures/query.log
270
+ - test/fixtures/other-query.log
282
271
  - test/fixtures/order/-start-time.expected
283
272
  - test/fixtures/order/elapsed.expected
284
- - test/fixtures/order/start-time.expected
285
273
  - test/fixtures/order/-elapsed.expected
274
+ - test/fixtures/order/start-time.expected
275
+ - test/fixtures/regression-test-logs/url-format.log
276
+ - test/fixtures/regression-test-logs/command-format.log
277
+ - test/fixtures/reporter/json.expected
278
+ - test/fixtures/reporter/console.expected
279
+ - test/fixtures/reporter/html.expected
280
+ - test/fixtures/reporter/json-stream.expected
281
+ - test/fixtures/no-report-summary.expected
286
282
  - test/helper.rb
287
- - test/run-test.rb
288
- - test/test-incompatibility-detector.rb
283
+ - test/command/test-format-regression-test-logs.rb
284
+ - test/command/test-extract.rb
289
285
  - test/test-replayer.rb
286
+ - test/test-incompatibility-detector.rb
287
+ - test/run-test.rb
288
+ - test/test-parser.rb
289
+ - test/test-response-comparer.rb
290
290
  has_rdoc: