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
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
2000-01-01 00:00:00.000000|n| grn_init: <99.9.9>
|
|
2
|
+
2000-01-01 00:00:00.000000|n| vm.overcommit_memory kernel parameter should be 1: <0>: See INFO level log to resolve this
|
|
3
|
+
2000-01-01 00:00:00.000000|n| spec:2:update:Object:32(type):8
|
|
4
|
+
2000-01-01 00:00:00.000000|n| spec:3:update:Bool:32(type):1
|
|
5
|
+
2000-01-01 00:00:00.000000|n| spec:4:update:Int8:32(type):1
|
|
6
|
+
2000-01-01 00:00:00.000000|n| spec:5:update:UInt8:32(type):1
|
|
7
|
+
2000-01-01 00:00:00.000000|n| spec:6:update:Int16:32(type):2
|
|
8
|
+
2000-01-01 00:00:00.000000|n| spec:7:update:UInt16:32(type):2
|
|
9
|
+
2000-01-01 00:00:00.000000|n| spec:8:update:Int32:32(type):4
|
|
10
|
+
2000-01-01 00:00:00.000000|n| spec:9:update:UInt32:32(type):4
|
|
11
|
+
2000-01-01 00:00:00.000000|n| spec:10:update:Int64:32(type):8
|
|
12
|
+
2000-01-01 00:00:00.000000|n| spec:11:update:UInt64:32(type):8
|
|
13
|
+
2000-01-01 00:00:00.000000|n| spec:12:update:Float:32(type):8
|
|
14
|
+
2000-01-01 00:00:00.000000|n| spec:13:update:Time:32(type):8
|
|
15
|
+
2000-01-01 00:00:00.000000|n| spec:14:update:ShortText:32(type):4096
|
|
16
|
+
2000-01-01 00:00:00.000000|n| spec:15:update:Text:32(type):65536
|
|
17
|
+
2000-01-01 00:00:00.000000|n| spec:16:update:LongText:32(type):2147483648
|
|
18
|
+
2000-01-01 00:00:00.000000|n| spec:17:update:TokyoGeoPoint:32(type):8
|
|
19
|
+
2000-01-01 00:00:00.000000|n| spec:18:update:WGS84GeoPoint:32(type):8
|
|
20
|
+
2000-01-01 00:00:00.000000|n| spec:19:update:Float32:32(type):4
|
|
21
|
+
2000-01-01 00:00:00.000000|n| spec:20:update:BFloat16:32(type):2
|
|
22
|
+
2000-01-01 00:00:00.000000|n| spec:21:update:ShortBinary:32(type):4096
|
|
23
|
+
2000-01-01 00:00:00.000000|n| spec:22:update:Binary:32(type):65536
|
|
24
|
+
2000-01-01 00:00:00.000000|n| spec:23:update:LongBinary:32(type):2147483648
|
|
25
|
+
2000-01-01 00:00:00.000000|n| spec:24:update:JSON:32(type):2147483648
|
|
26
|
+
2000-01-01 00:00:00.000000|n| spec:64:update:TokenMecab:33(proc):1
|
|
27
|
+
2000-01-01 00:00:10.000000|n| grn_fin (0)
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=yes
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
data/test/fixtures/check-crash/query/column_create/flushed/target-name-recursive-dependent.log
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data.count&recursive=dependent
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=no
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:dat_key)]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:hash_key)]
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(DB)]
|
|
10
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
11
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data.count&recursive=no
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/column_create?table=Data&name=count&type=Int32
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data.count&recursive=yes
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=yes
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=no
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:dat_key)]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:hash_key)]
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
|
|
10
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(DB)]
|
|
11
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
12
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=no
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/delete?table=Data&key=2
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 delete(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=yes
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data&columns=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][11]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data&columns=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][11]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=yes
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data&columns=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][11]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
data/test/fixtures/check-crash/query/load/unflushed/columns-target-name-recursive-dependent.log
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data&columns=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=no
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:dat_key)]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:hash_key)]
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
|
|
10
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(DB)]
|
|
11
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
12
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=no
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/load?table=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(1): [0][0][10]
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=yes
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2c+count&load_values=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
|
|
5
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
6
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
10
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
|
|
11
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
12
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
|
|
5
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
6
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=yes
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
10
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
11
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
|
|
5
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
6
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
10
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
11
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
|
|
5
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
|
|
5
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
6
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(10)
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(10)
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
5
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
|
|
5
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
6
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
10
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
|
|
5
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
6
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=no
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:dat_key)]
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
|
|
10
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:hash_key)]
|
|
11
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
|
|
12
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(DB)]
|
|
13
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
14
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
|
|
5
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
6
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=no
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
10
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/select?table=Raw&load_table=Data&load_columns=_key%2ccount&load_values=_key%2ccount
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 select(0)
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 load(0): [Data][11]
|
|
4
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 output(0)
|
|
5
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
6
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=yes
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
10
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data.count]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=yes
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=no
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:dat_key)]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:hash_key)]
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(DB)]
|
|
10
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
11
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=no
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/table_create?name=Data&key_type=ShortText&flags=TABLE_HASH_KEY
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=yes
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/truncate?target_name=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/truncate?target_name=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=yes
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/truncate?target_name=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=dependent
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/truncate?target_name=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?only_opened=yes
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Users]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/truncate?target_name=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?recursive=no
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:dat_key)]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:table:hash_key)]
|
|
8
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(anonymous:column:var_size)]
|
|
9
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[(DB)]
|
|
10
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
11
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/truncate?target_name=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=no
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|>/d/truncate?target_name=Data
|
|
2
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/100
|
|
3
|
+
2000-01-01 00:00:01.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|
|
4
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|>/d/io_flush?target_name=Data&recursive=yes
|
|
5
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 flush[Data]
|
|
6
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|:000000001000000 send(100): 100/00
|
|
7
|
+
2000-01-01 00:00:10.000000|000000AAAAAAAAAA|<000000001000000 rc=0
|