groonga-query-log 1.7.8 → 1.7.9
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/README.md +7 -4
- data/doc/text/check-crash.md +152 -0
- data/doc/text/news.md +22 -0
- data/groonga-query-log.gemspec +4 -2
- data/lib/groonga-query-log/command/check-crash.rb +233 -74
- data/lib/groonga-query-log/command/show-running-queries.rb +1 -1
- data/lib/groonga-query-log/version.rb +1 -1
- data/test/command/test-check-crash.rb +584 -0
- data/test/command/test-format-regression-test-logs.rb +4 -4
- data/test/fixtures/check-crash/process/crash.log +29 -0
- data/test/fixtures/check-crash/process/leak.log +27 -0
- data/test/fixtures/check-crash/process/normal.log +27 -0
- data/test/fixtures/check-crash/query/column_create/flushed/only-opened.log +8 -0
- data/test/fixtures/check-crash/query/column_create/flushed/recursive-yes.log +8 -0
- data/test/fixtures/check-crash/query/column_create/flushed/target-name-recursive-dependent.log +8 -0
- data/test/fixtures/check-crash/query/column_create/unfinished.log +2 -0
- data/test/fixtures/check-crash/query/column_create/unflushed/no-flush.log +3 -0
- data/test/fixtures/check-crash/query/column_create/unflushed/only-opened.log +7 -0
- data/test/fixtures/check-crash/query/column_create/unflushed/recursive-no.log +11 -0
- data/test/fixtures/check-crash/query/column_create/unflushed/target-name-recursive-no.log +7 -0
- data/test/fixtures/check-crash/query/column_create/unflushed/target-name-recursive-yes.log +7 -0
- data/test/fixtures/check-crash/query/delete/flushed/only-opened.log +9 -0
- data/test/fixtures/check-crash/query/delete/flushed/recursive-yes.log +8 -0
- data/test/fixtures/check-crash/query/delete/flushed/target-name-recursive-dependent.log +8 -0
- data/test/fixtures/check-crash/query/delete/unfinished.log +3 -0
- data/test/fixtures/check-crash/query/delete/unflushed/no-flush.log +4 -0
- data/test/fixtures/check-crash/query/delete/unflushed/only-opened.log +8 -0
- data/test/fixtures/check-crash/query/delete/unflushed/recursive-no.log +12 -0
- data/test/fixtures/check-crash/query/delete/unflushed/target-name-recursive-no.log +8 -0
- data/test/fixtures/check-crash/query/delete/unflushed/target-name-recursive-yes.log +8 -0
- data/test/fixtures/check-crash/query/load/flushed/columns-only-opened.log +9 -0
- data/test/fixtures/check-crash/query/load/flushed/columns-target-name-recursive-dependent.log +9 -0
- data/test/fixtures/check-crash/query/load/flushed/only-opened.log +9 -0
- data/test/fixtures/check-crash/query/load/flushed/recursive-yes.log +8 -0
- data/test/fixtures/check-crash/query/load/flushed/target-name-recursive-dependent.log +8 -0
- data/test/fixtures/check-crash/query/load/unfinished.log +3 -0
- data/test/fixtures/check-crash/query/load/unflushed/columns-only-opened.log +8 -0
- data/test/fixtures/check-crash/query/load/unflushed/columns-target-name-recursive-dependent.log +8 -0
- data/test/fixtures/check-crash/query/load/unflushed/no-flush.log +4 -0
- data/test/fixtures/check-crash/query/load/unflushed/only-opened.log +8 -0
- data/test/fixtures/check-crash/query/load/unflushed/recursive-no.log +12 -0
- data/test/fixtures/check-crash/query/load/unflushed/target-name-recursive-no.log +8 -0
- data/test/fixtures/check-crash/query/load/unflushed/target-name-recursive-yes.log +8 -0
- data/test/fixtures/check-crash/query/select/flushed/only-opened.log +12 -0
- data/test/fixtures/check-crash/query/select/flushed/recursive-yes.log +11 -0
- data/test/fixtures/check-crash/query/select/flushed/target-name-recursive-dependent.log +11 -0
- data/test/fixtures/check-crash/query/select/unfinished.log +5 -0
- data/test/fixtures/check-crash/query/select/unflushed/no-flush.log +6 -0
- data/test/fixtures/check-crash/query/select/unflushed/no-load.log +5 -0
- data/test/fixtures/check-crash/query/select/unflushed/only-opened.log +10 -0
- data/test/fixtures/check-crash/query/select/unflushed/recursive-no.log +14 -0
- data/test/fixtures/check-crash/query/select/unflushed/target-name-recursive-no.log +10 -0
- data/test/fixtures/check-crash/query/select/unflushed/target-name-recursive-yes.log +10 -0
- data/test/fixtures/check-crash/query/table_create/flushed/only-opened.log +8 -0
- data/test/fixtures/check-crash/query/table_create/flushed/recursive-yes.log +7 -0
- data/test/fixtures/check-crash/query/table_create/flushed/target-name-recursive-dependent.log +7 -0
- data/test/fixtures/check-crash/query/table_create/unflushed/no-flush.log +4 -0
- data/test/fixtures/check-crash/query/table_create/unflushed/only-opened.log +7 -0
- data/test/fixtures/check-crash/query/table_create/unflushed/recursive-no.log +11 -0
- data/test/fixtures/check-crash/query/table_create/unflushed/target-name-recursive-no.log +7 -0
- data/test/fixtures/check-crash/query/table_create/unflushed/target-name-recursive-yes.log +7 -0
- data/test/fixtures/check-crash/query/truncate/flushed/only-opened.log +8 -0
- data/test/fixtures/check-crash/query/truncate/flushed/recursive-yes.log +7 -0
- data/test/fixtures/check-crash/query/truncate/flushed/target-name-recursive-dependent.log +7 -0
- data/test/fixtures/check-crash/query/truncate/unflushed/no-flush.log +3 -0
- data/test/fixtures/check-crash/query/truncate/unflushed/only-opened.log +7 -0
- data/test/fixtures/check-crash/query/truncate/unflushed/recursive-no.log +11 -0
- data/test/fixtures/check-crash/query/truncate/unflushed/target-name-recursive-no.log +7 -0
- data/test/fixtures/check-crash/query/truncate/unflushed/target-name-recursive-yes.log +7 -0
- data/test/fixtures/reporter/json-stream.expected +1 -1
- data/test/fixtures/reporter/json.expected +1 -1
- data/test/helper.rb +1 -2
- metadata +160 -11
- data/test/fixtures/run-regression-test/results/query.log.log +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
{"start_time":START_TIME,"end_time":END_TIME,"elapsed":0.003128856,"return_code":0,"slow":false,"command":{"raw":"load --table Video","name":"load","parameters":[{"key":"table","value":"Video"}]},"operations":[]}
|
|
2
|
-
{"start_time":START_TIME,"end_time":END_TIME,"elapsed":0.00121714,"return_code":0,"slow":false,"command":{"raw":"select --table Users --query follower:@groonga --output_columns _key,name","name":"select","parameters":[{"key":"table","value":"Users"},{"key":"query","value":"follower:@groonga"},{"key":"output_columns","value":"_key,name"}]},"operations":[{"name":"filter","relative_elapsed":0.0008429529999999999,"context":"Users.follower match \"groonga\"","slow":false,"n_records":2},{"name":"select","relative_elapsed":
|
|
2
|
+
{"start_time":START_TIME,"end_time":END_TIME,"elapsed":0.00121714,"return_code":0,"slow":false,"command":{"raw":"select --table Users --query follower:@groonga --output_columns _key,name","name":"select","parameters":[{"key":"table","value":"Users"},{"key":"query","value":"follower:@groonga"},{"key":"output_columns","value":"_key,name"}]},"operations":[{"name":"filter","relative_elapsed":0.0008429529999999999,"context":"Users.follower match \"groonga\"","slow":false,"n_records":2},{"name":"select","relative_elapsed":0.000027947,"context":null,"slow":false,"n_records":2},{"name":"output","relative_elapsed":0.000195852,"context":"_key,name","slow":false,"n_records":2}]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
[
|
|
2
2
|
{"start_time":START_TIME,"end_time":END_TIME,"elapsed":0.003128856,"return_code":0,"slow":false,"command":{"raw":"load --table Video","name":"load","parameters":[{"key":"table","value":"Video"}]},"operations":[]},
|
|
3
|
-
{"start_time":START_TIME,"end_time":END_TIME,"elapsed":0.00121714,"return_code":0,"slow":false,"command":{"raw":"select --table Users --query follower:@groonga --output_columns _key,name","name":"select","parameters":[{"key":"table","value":"Users"},{"key":"query","value":"follower:@groonga"},{"key":"output_columns","value":"_key,name"}]},"operations":[{"name":"filter","relative_elapsed":0.0008429529999999999,"context":"Users.follower match \"groonga\"","slow":false,"n_records":2},{"name":"select","relative_elapsed":
|
|
3
|
+
{"start_time":START_TIME,"end_time":END_TIME,"elapsed":0.00121714,"return_code":0,"slow":false,"command":{"raw":"select --table Users --query follower:@groonga --output_columns _key,name","name":"select","parameters":[{"key":"table","value":"Users"},{"key":"query","value":"follower:@groonga"},{"key":"output_columns","value":"_key,name"}]},"operations":[{"name":"filter","relative_elapsed":0.0008429529999999999,"context":"Users.follower match \"groonga\"","slow":false,"n_records":2},{"name":"select","relative_elapsed":0.000027947,"context":null,"slow":false,"n_records":2},{"name":"output","relative_elapsed":0.000195852,"context":"_key,name","slow":false,"n_records":2}]}
|
|
4
4
|
]
|
data/test/helper.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2011-
|
|
1
|
+
# Copyright (C) 2011-2025 Sutou Kouhei <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
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
# License along with this library; if not, write to the Free Software
|
|
15
15
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
16
16
|
|
|
17
|
-
require "cgi"
|
|
18
17
|
require "stringio"
|
|
19
18
|
|
|
20
19
|
require "groonga/command"
|
metadata
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: groonga-query-log
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kouhei Sutou
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: base64
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
@@ -25,7 +25,7 @@ dependencies:
|
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name:
|
|
28
|
+
name: charty
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
@@ -39,7 +39,7 @@ dependencies:
|
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name:
|
|
42
|
+
name: diff-lcs
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - ">="
|
|
@@ -80,6 +80,34 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: 0.1.2
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: net-smtp
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
type: :runtime
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: ostruct
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
type: :runtime
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0'
|
|
83
111
|
- !ruby/object:Gem::Dependency
|
|
84
112
|
name: test-unit
|
|
85
113
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -213,6 +241,7 @@ files:
|
|
|
213
241
|
- bin/groonga-query-log-run-regression-test
|
|
214
242
|
- bin/groonga-query-log-show-running-queries
|
|
215
243
|
- bin/groonga-query-log-verify-server
|
|
244
|
+
- doc/text/check-crash.md
|
|
216
245
|
- doc/text/lgpl-2.1.txt
|
|
217
246
|
- doc/text/news.md
|
|
218
247
|
- doc/text/run-regression-test.md
|
|
@@ -264,10 +293,71 @@ files:
|
|
|
264
293
|
- lib/groonga/query-log/command/show-running-queries.rb
|
|
265
294
|
- lib/groonga/query-log/command/verify-server.rb
|
|
266
295
|
- test/command/test-analyzer.rb
|
|
296
|
+
- test/command/test-check-crash.rb
|
|
267
297
|
- test/command/test-check-performance-regression.rb
|
|
268
298
|
- test/command/test-extract.rb
|
|
269
299
|
- test/command/test-format-regression-test-logs.rb
|
|
270
300
|
- test/command/test-run-regression-test.rb
|
|
301
|
+
- test/fixtures/check-crash/process/crash.log
|
|
302
|
+
- test/fixtures/check-crash/process/leak.log
|
|
303
|
+
- test/fixtures/check-crash/process/normal.log
|
|
304
|
+
- test/fixtures/check-crash/query/column_create/flushed/only-opened.log
|
|
305
|
+
- test/fixtures/check-crash/query/column_create/flushed/recursive-yes.log
|
|
306
|
+
- test/fixtures/check-crash/query/column_create/flushed/target-name-recursive-dependent.log
|
|
307
|
+
- test/fixtures/check-crash/query/column_create/unfinished.log
|
|
308
|
+
- test/fixtures/check-crash/query/column_create/unflushed/no-flush.log
|
|
309
|
+
- test/fixtures/check-crash/query/column_create/unflushed/only-opened.log
|
|
310
|
+
- test/fixtures/check-crash/query/column_create/unflushed/recursive-no.log
|
|
311
|
+
- test/fixtures/check-crash/query/column_create/unflushed/target-name-recursive-no.log
|
|
312
|
+
- test/fixtures/check-crash/query/column_create/unflushed/target-name-recursive-yes.log
|
|
313
|
+
- test/fixtures/check-crash/query/delete/flushed/only-opened.log
|
|
314
|
+
- test/fixtures/check-crash/query/delete/flushed/recursive-yes.log
|
|
315
|
+
- test/fixtures/check-crash/query/delete/flushed/target-name-recursive-dependent.log
|
|
316
|
+
- test/fixtures/check-crash/query/delete/unfinished.log
|
|
317
|
+
- test/fixtures/check-crash/query/delete/unflushed/no-flush.log
|
|
318
|
+
- test/fixtures/check-crash/query/delete/unflushed/only-opened.log
|
|
319
|
+
- test/fixtures/check-crash/query/delete/unflushed/recursive-no.log
|
|
320
|
+
- test/fixtures/check-crash/query/delete/unflushed/target-name-recursive-no.log
|
|
321
|
+
- test/fixtures/check-crash/query/delete/unflushed/target-name-recursive-yes.log
|
|
322
|
+
- test/fixtures/check-crash/query/load/flushed/columns-only-opened.log
|
|
323
|
+
- test/fixtures/check-crash/query/load/flushed/columns-target-name-recursive-dependent.log
|
|
324
|
+
- test/fixtures/check-crash/query/load/flushed/only-opened.log
|
|
325
|
+
- test/fixtures/check-crash/query/load/flushed/recursive-yes.log
|
|
326
|
+
- test/fixtures/check-crash/query/load/flushed/target-name-recursive-dependent.log
|
|
327
|
+
- test/fixtures/check-crash/query/load/unfinished.log
|
|
328
|
+
- test/fixtures/check-crash/query/load/unflushed/columns-only-opened.log
|
|
329
|
+
- test/fixtures/check-crash/query/load/unflushed/columns-target-name-recursive-dependent.log
|
|
330
|
+
- test/fixtures/check-crash/query/load/unflushed/no-flush.log
|
|
331
|
+
- test/fixtures/check-crash/query/load/unflushed/only-opened.log
|
|
332
|
+
- test/fixtures/check-crash/query/load/unflushed/recursive-no.log
|
|
333
|
+
- test/fixtures/check-crash/query/load/unflushed/target-name-recursive-no.log
|
|
334
|
+
- test/fixtures/check-crash/query/load/unflushed/target-name-recursive-yes.log
|
|
335
|
+
- test/fixtures/check-crash/query/select/flushed/only-opened.log
|
|
336
|
+
- test/fixtures/check-crash/query/select/flushed/recursive-yes.log
|
|
337
|
+
- test/fixtures/check-crash/query/select/flushed/target-name-recursive-dependent.log
|
|
338
|
+
- test/fixtures/check-crash/query/select/unfinished.log
|
|
339
|
+
- test/fixtures/check-crash/query/select/unflushed/no-flush.log
|
|
340
|
+
- test/fixtures/check-crash/query/select/unflushed/no-load.log
|
|
341
|
+
- test/fixtures/check-crash/query/select/unflushed/only-opened.log
|
|
342
|
+
- test/fixtures/check-crash/query/select/unflushed/recursive-no.log
|
|
343
|
+
- test/fixtures/check-crash/query/select/unflushed/target-name-recursive-no.log
|
|
344
|
+
- test/fixtures/check-crash/query/select/unflushed/target-name-recursive-yes.log
|
|
345
|
+
- test/fixtures/check-crash/query/table_create/flushed/only-opened.log
|
|
346
|
+
- test/fixtures/check-crash/query/table_create/flushed/recursive-yes.log
|
|
347
|
+
- test/fixtures/check-crash/query/table_create/flushed/target-name-recursive-dependent.log
|
|
348
|
+
- test/fixtures/check-crash/query/table_create/unflushed/no-flush.log
|
|
349
|
+
- test/fixtures/check-crash/query/table_create/unflushed/only-opened.log
|
|
350
|
+
- test/fixtures/check-crash/query/table_create/unflushed/recursive-no.log
|
|
351
|
+
- test/fixtures/check-crash/query/table_create/unflushed/target-name-recursive-no.log
|
|
352
|
+
- test/fixtures/check-crash/query/table_create/unflushed/target-name-recursive-yes.log
|
|
353
|
+
- test/fixtures/check-crash/query/truncate/flushed/only-opened.log
|
|
354
|
+
- test/fixtures/check-crash/query/truncate/flushed/recursive-yes.log
|
|
355
|
+
- test/fixtures/check-crash/query/truncate/flushed/target-name-recursive-dependent.log
|
|
356
|
+
- test/fixtures/check-crash/query/truncate/unflushed/no-flush.log
|
|
357
|
+
- test/fixtures/check-crash/query/truncate/unflushed/only-opened.log
|
|
358
|
+
- test/fixtures/check-crash/query/truncate/unflushed/recursive-no.log
|
|
359
|
+
- test/fixtures/check-crash/query/truncate/unflushed/target-name-recursive-no.log
|
|
360
|
+
- test/fixtures/check-crash/query/truncate/unflushed/target-name-recursive-yes.log
|
|
271
361
|
- test/fixtures/check-performance-regression/cache.log
|
|
272
362
|
- test/fixtures/check-performance-regression/different_operations1.log
|
|
273
363
|
- test/fixtures/check-performance-regression/different_operations2.log
|
|
@@ -298,7 +388,6 @@ files:
|
|
|
298
388
|
- test/fixtures/run-regression-test/mail-notifier/failure.log
|
|
299
389
|
- test/fixtures/run-regression-test/mail-notifier/success.log
|
|
300
390
|
- test/fixtures/run-regression-test/query-logs/query.log
|
|
301
|
-
- test/fixtures/run-regression-test/results/query.log.log
|
|
302
391
|
- test/fixtures/run-regression-test/schema/schema.grn
|
|
303
392
|
- test/fixtures/target-commands.expected
|
|
304
393
|
- test/fixtures/target-tables.expected
|
|
@@ -314,7 +403,7 @@ homepage: https://github.com/groonga/groonga-query-log
|
|
|
314
403
|
licenses:
|
|
315
404
|
- LGPLv2.1+
|
|
316
405
|
metadata: {}
|
|
317
|
-
post_install_message:
|
|
406
|
+
post_install_message:
|
|
318
407
|
rdoc_options: []
|
|
319
408
|
require_paths:
|
|
320
409
|
- lib
|
|
@@ -329,8 +418,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
329
418
|
- !ruby/object:Gem::Version
|
|
330
419
|
version: '0'
|
|
331
420
|
requirements: []
|
|
332
|
-
rubygems_version: 3.
|
|
333
|
-
signing_key:
|
|
421
|
+
rubygems_version: 3.4.20
|
|
422
|
+
signing_key:
|
|
334
423
|
specification_version: 4
|
|
335
424
|
summary: Groonga-query-log is a collection of library and tools to process [Groonga](http://groonga.org/)'s
|
|
336
425
|
query log. You can write a program to process query log by using groonga-query-log
|
|
@@ -338,10 +427,71 @@ summary: Groonga-query-log is a collection of library and tools to process [Groo
|
|
|
338
427
|
query log by using groonga-query-log as a tool.
|
|
339
428
|
test_files:
|
|
340
429
|
- test/command/test-analyzer.rb
|
|
430
|
+
- test/command/test-check-crash.rb
|
|
341
431
|
- test/command/test-check-performance-regression.rb
|
|
342
432
|
- test/command/test-extract.rb
|
|
343
433
|
- test/command/test-format-regression-test-logs.rb
|
|
344
434
|
- test/command/test-run-regression-test.rb
|
|
435
|
+
- test/fixtures/check-crash/process/crash.log
|
|
436
|
+
- test/fixtures/check-crash/process/leak.log
|
|
437
|
+
- test/fixtures/check-crash/process/normal.log
|
|
438
|
+
- test/fixtures/check-crash/query/column_create/flushed/only-opened.log
|
|
439
|
+
- test/fixtures/check-crash/query/column_create/flushed/recursive-yes.log
|
|
440
|
+
- test/fixtures/check-crash/query/column_create/flushed/target-name-recursive-dependent.log
|
|
441
|
+
- test/fixtures/check-crash/query/column_create/unfinished.log
|
|
442
|
+
- test/fixtures/check-crash/query/column_create/unflushed/no-flush.log
|
|
443
|
+
- test/fixtures/check-crash/query/column_create/unflushed/only-opened.log
|
|
444
|
+
- test/fixtures/check-crash/query/column_create/unflushed/recursive-no.log
|
|
445
|
+
- test/fixtures/check-crash/query/column_create/unflushed/target-name-recursive-no.log
|
|
446
|
+
- test/fixtures/check-crash/query/column_create/unflushed/target-name-recursive-yes.log
|
|
447
|
+
- test/fixtures/check-crash/query/delete/flushed/only-opened.log
|
|
448
|
+
- test/fixtures/check-crash/query/delete/flushed/recursive-yes.log
|
|
449
|
+
- test/fixtures/check-crash/query/delete/flushed/target-name-recursive-dependent.log
|
|
450
|
+
- test/fixtures/check-crash/query/delete/unfinished.log
|
|
451
|
+
- test/fixtures/check-crash/query/delete/unflushed/no-flush.log
|
|
452
|
+
- test/fixtures/check-crash/query/delete/unflushed/only-opened.log
|
|
453
|
+
- test/fixtures/check-crash/query/delete/unflushed/recursive-no.log
|
|
454
|
+
- test/fixtures/check-crash/query/delete/unflushed/target-name-recursive-no.log
|
|
455
|
+
- test/fixtures/check-crash/query/delete/unflushed/target-name-recursive-yes.log
|
|
456
|
+
- test/fixtures/check-crash/query/load/flushed/columns-only-opened.log
|
|
457
|
+
- test/fixtures/check-crash/query/load/flushed/columns-target-name-recursive-dependent.log
|
|
458
|
+
- test/fixtures/check-crash/query/load/flushed/only-opened.log
|
|
459
|
+
- test/fixtures/check-crash/query/load/flushed/recursive-yes.log
|
|
460
|
+
- test/fixtures/check-crash/query/load/flushed/target-name-recursive-dependent.log
|
|
461
|
+
- test/fixtures/check-crash/query/load/unfinished.log
|
|
462
|
+
- test/fixtures/check-crash/query/load/unflushed/columns-only-opened.log
|
|
463
|
+
- test/fixtures/check-crash/query/load/unflushed/columns-target-name-recursive-dependent.log
|
|
464
|
+
- test/fixtures/check-crash/query/load/unflushed/no-flush.log
|
|
465
|
+
- test/fixtures/check-crash/query/load/unflushed/only-opened.log
|
|
466
|
+
- test/fixtures/check-crash/query/load/unflushed/recursive-no.log
|
|
467
|
+
- test/fixtures/check-crash/query/load/unflushed/target-name-recursive-no.log
|
|
468
|
+
- test/fixtures/check-crash/query/load/unflushed/target-name-recursive-yes.log
|
|
469
|
+
- test/fixtures/check-crash/query/select/flushed/only-opened.log
|
|
470
|
+
- test/fixtures/check-crash/query/select/flushed/recursive-yes.log
|
|
471
|
+
- test/fixtures/check-crash/query/select/flushed/target-name-recursive-dependent.log
|
|
472
|
+
- test/fixtures/check-crash/query/select/unfinished.log
|
|
473
|
+
- test/fixtures/check-crash/query/select/unflushed/no-flush.log
|
|
474
|
+
- test/fixtures/check-crash/query/select/unflushed/no-load.log
|
|
475
|
+
- test/fixtures/check-crash/query/select/unflushed/only-opened.log
|
|
476
|
+
- test/fixtures/check-crash/query/select/unflushed/recursive-no.log
|
|
477
|
+
- test/fixtures/check-crash/query/select/unflushed/target-name-recursive-no.log
|
|
478
|
+
- test/fixtures/check-crash/query/select/unflushed/target-name-recursive-yes.log
|
|
479
|
+
- test/fixtures/check-crash/query/table_create/flushed/only-opened.log
|
|
480
|
+
- test/fixtures/check-crash/query/table_create/flushed/recursive-yes.log
|
|
481
|
+
- test/fixtures/check-crash/query/table_create/flushed/target-name-recursive-dependent.log
|
|
482
|
+
- test/fixtures/check-crash/query/table_create/unflushed/no-flush.log
|
|
483
|
+
- test/fixtures/check-crash/query/table_create/unflushed/only-opened.log
|
|
484
|
+
- test/fixtures/check-crash/query/table_create/unflushed/recursive-no.log
|
|
485
|
+
- test/fixtures/check-crash/query/table_create/unflushed/target-name-recursive-no.log
|
|
486
|
+
- test/fixtures/check-crash/query/table_create/unflushed/target-name-recursive-yes.log
|
|
487
|
+
- test/fixtures/check-crash/query/truncate/flushed/only-opened.log
|
|
488
|
+
- test/fixtures/check-crash/query/truncate/flushed/recursive-yes.log
|
|
489
|
+
- test/fixtures/check-crash/query/truncate/flushed/target-name-recursive-dependent.log
|
|
490
|
+
- test/fixtures/check-crash/query/truncate/unflushed/no-flush.log
|
|
491
|
+
- test/fixtures/check-crash/query/truncate/unflushed/only-opened.log
|
|
492
|
+
- test/fixtures/check-crash/query/truncate/unflushed/recursive-no.log
|
|
493
|
+
- test/fixtures/check-crash/query/truncate/unflushed/target-name-recursive-no.log
|
|
494
|
+
- test/fixtures/check-crash/query/truncate/unflushed/target-name-recursive-yes.log
|
|
345
495
|
- test/fixtures/check-performance-regression/cache.log
|
|
346
496
|
- test/fixtures/check-performance-regression/different_operations1.log
|
|
347
497
|
- test/fixtures/check-performance-regression/different_operations2.log
|
|
@@ -372,7 +522,6 @@ test_files:
|
|
|
372
522
|
- test/fixtures/run-regression-test/mail-notifier/failure.log
|
|
373
523
|
- test/fixtures/run-regression-test/mail-notifier/success.log
|
|
374
524
|
- test/fixtures/run-regression-test/query-logs/query.log
|
|
375
|
-
- test/fixtures/run-regression-test/results/query.log.log
|
|
376
525
|
- test/fixtures/run-regression-test/schema/schema.grn
|
|
377
526
|
- test/fixtures/target-commands.expected
|
|
378
527
|
- test/fixtures/target-tables.expected
|
|
File without changes
|