Merge lp:~percona-toolkit-dev/percona-toolkit/fix-log-parser-writer-bug-963225 into lp:percona-toolkit/2.0

Proposed by Daniel Nichter
Status: Merged
Merged at revision: 246
Proposed branch: lp:~percona-toolkit-dev/percona-toolkit/fix-log-parser-writer-bug-963225
Merge into: lp:percona-toolkit/2.0
Diff against target: 3493 lines (+1166/-1166)
41 files modified
bin/pt-query-digest (+8/-8)
lib/Cxn.pm (+1/-1)
lib/QueryAdvisorRules.pm (+1/-1)
lib/Schema.pm (+5/-5)
lib/SlowLogWriter.pm (+2/-2)
t/lib/SlowLogParser.t (+63/-63)
t/lib/samples/slowlogs/slow002.txt (+16/-16)
t/lib/samples/slowlogs/slow003.txt (+2/-2)
t/lib/samples/slowlogs/slow005.txt (+2/-2)
t/lib/samples/slowlogs/slow006.txt (+12/-12)
t/lib/samples/slowlogs/slow007.txt (+2/-2)
t/lib/samples/slowlogs/slow022.txt (+12/-12)
t/lib/samples/slowlogs/slow030.txt (+899/-899)
t/lib/samples/slowlogs/slow032-rewritten.txt (+2/-2)
t/lib/samples/slowlogs/slow032.txt (+2/-2)
t/lib/samples/slowlogs/slow034.txt (+18/-18)
t/lib/samples/slowlogs/slow035.txt (+2/-2)
t/pt-log-player/samples/log001.txt (+16/-16)
t/pt-query-digest/read_timeout.t (+1/-1)
t/pt-query-digest/review.t (+4/-4)
t/pt-query-digest/samples/save-results/slow002-limit-3.txt (+4/-4)
t/pt-query-digest/samples/save-results/slow002.txt (+2/-2)
t/pt-query-digest/samples/save-results/slow006.txt (+1/-1)
t/pt-query-digest/samples/slow-issue-611.txt (+2/-2)
t/pt-query-digest/samples/slow002-orderbynonexistent.txt (+6/-6)
t/pt-query-digest/samples/slow002_iters_2.txt (+1/-1)
t/pt-query-digest/samples/slow002_orderbyreport.txt (+2/-2)
t/pt-query-digest/samples/slow002_report.txt (+6/-6)
t/pt-query-digest/samples/slow002_report_filtered.txt (+1/-1)
t/pt-query-digest/samples/slow006-first2.txt (+8/-8)
t/pt-query-digest/samples/slow006-order-by-re.txt (+2/-2)
t/pt-query-digest/samples/slow006_AR_1.txt (+2/-2)
t/pt-query-digest/samples/slow006_AR_2.txt (+1/-1)
t/pt-query-digest/samples/slow006_AR_4.txt (+2/-2)
t/pt-query-digest/samples/slow006_AR_5.txt (+1/-1)
t/pt-query-digest/samples/slow006_report.txt (+2/-2)
t/pt-query-digest/samples/slow034-inheritance.txt (+18/-18)
t/pt-query-digest/samples/slow034-no-ts-inheritance.txt (+18/-18)
t/pt-query-digest/samples/slow034-order-by-Locktime-sum-with-Locktime-distro.txt (+8/-8)
t/pt-query-digest/samples/slow034-order-by-Locktime-sum.txt (+8/-8)
t/pt-query-digest/samples/slow035.txt (+1/-1)
To merge this branch: bzr merge lp:~percona-toolkit-dev/percona-toolkit/fix-log-parser-writer-bug-963225
Reviewer Review Type Date Requested Status
Daniel Nichter Approve
Review via email: mp+108165@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Daniel Nichter (daniel-nichter) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'bin/pt-online-schema-change'
2=== modified file 'bin/pt-query-advisor'
3=== modified file 'bin/pt-query-digest'
4--- bin/pt-query-digest 2012-05-30 22:09:26 +0000
5+++ bin/pt-query-digest 2012-05-31 14:13:25 +0000
6@@ -4730,9 +4730,9 @@
7
8 if ( $percona_patched ) {
9 printf $fh
10- "# QC_Hit: %s Full_scan: %s Full_join: %s Tmp_table: %s Disk_tmp_table: %s\n# Filesort: %s Disk_filesort: %s Merge_passes: %d\n",
11+ "# QC_Hit: %s Full_scan: %s Full_join: %s Tmp_table: %s Tmp_table_on_disk: %s\n# Filesort: %s Filesort_on_disk: %s Merge_passes: %d\n",
12 map { $_ || 0 }
13- @{$event}{qw(QC_Hit Full_scan Full_join Tmp_table Disk_tmp_table Filesort Disk_filesort Merge_passes)};
14+ @{$event}{qw(QC_Hit Full_scan Full_join Tmp_table Tmp_table_on_disk Filesort Filesort_on_disk Merge_passes)};
15
16 if ( exists $event->{InnoDB_IO_r_ops} ) {
17 printf $fh
18@@ -15108,12 +15108,12 @@
19 Full_join_sum FLOAT,
20 Tmp_table_cnt FLOAT,
21 Tmp_table_sum FLOAT,
22- Disk_tmp_table_cnt FLOAT,
23- Disk_tmp_table_sum FLOAT,
24- Filesort_cnt FLOAT,
25- Filesort_sum FLOAT,
26- Disk_filesort_cnt FLOAT,
27- Disk_filesort_sum FLOAT,
28+ Tmp_table_on_disk_cnt FLOAT,
29+ Tmp_table_on_disk_sum FLOAT,
30+ Filesort_cnt FLOAT,
31+ Filesort_sum FLOAT,
32+ Filesort_on_disk_cnt FLOAT,
33+ Filesort_on_disk_sum FLOAT,
34 PRIMARY KEY(checksum, ts_min, ts_max)
35 );
36
37
38=== modified file 'bin/pt-sift'
39=== modified file 'bin/pt-upgrade'
40=== modified file 'bin/pt-visual-explain'
41=== modified file 'docs/percona-toolkit.pod'
42=== modified file 'lib/Cxn.pm'
43--- lib/Cxn.pm 2012-01-19 19:46:56 +0000
44+++ lib/Cxn.pm 2012-05-31 14:13:25 +0000
45@@ -193,7 +193,7 @@
46
47 sub DESTROY {
48 my ($self) = @_;
49- if ( $self->{dbh} ) {
50+ if ( $self->{dbh} && ref($self->{dbh}) ) {
51 PTDEBUG && _d('Disconnecting dbh', $self->{dbh}, $self->{name});
52 $self->{dbh}->disconnect();
53 }
54
55=== modified file 'lib/QueryAdvisorRules.pm'
56--- lib/QueryAdvisorRules.pm 2012-01-19 19:46:56 +0000
57+++ lib/QueryAdvisorRules.pm 2012-05-31 14:13:25 +0000
58@@ -189,7 +189,7 @@
59 foreach my $pred ( @$where ) {
60 my $val = $pred->{right_arg};
61 next unless $val;
62- return 0 if $val =~ m/^\d+$/ && $orderby_col{lc $pred->{left_arg}};
63+ return 0 if $val =~ m/^\d+$/ && $orderby_col{lc($pred->{left_arg} || '')};
64 }
65 return;
66 },
67
68=== modified file 'lib/Schema.pm'
69--- lib/Schema.pm 2012-01-19 19:46:56 +0000
70+++ lib/Schema.pm 2012-05-31 14:13:25 +0000
71@@ -152,9 +152,9 @@
72 ($col, $tbl, $db) = @args{qw(col tbl db)};
73 }
74
75- $db = lc $db;
76- $tbl = lc $tbl;
77- $col = lc $col;
78+ $db = lc($db || '');
79+ $tbl = lc($tbl || '');
80+ $col = lc($col || '');
81
82 if ( !$col ) {
83 PTDEBUG && _d('No column specified or parsed');
84@@ -214,8 +214,8 @@
85 ($tbl, $db) = @args{qw(tbl db)};
86 }
87
88- $db = lc $db;
89- $tbl = lc $tbl;
90+ $db = lc($db || '');
91+ $tbl = lc($tbl || '');
92
93 if ( !$tbl ) {
94 PTDEBUG && _d('No table specified or parsed');
95
96=== modified file 'lib/SlowLogWriter.pm'
97--- lib/SlowLogWriter.pm 2012-01-19 19:46:56 +0000
98+++ lib/SlowLogWriter.pm 2012-05-31 14:13:25 +0000
99@@ -62,9 +62,9 @@
100 if ( $percona_patched ) {
101 # First 2 lines of Percona-patched attribs.
102 printf $fh
103- "# QC_Hit: %s Full_scan: %s Full_join: %s Tmp_table: %s Disk_tmp_table: %s\n# Filesort: %s Disk_filesort: %s Merge_passes: %d\n",
104+ "# QC_Hit: %s Full_scan: %s Full_join: %s Tmp_table: %s Tmp_table_on_disk: %s\n# Filesort: %s Filesort_on_disk: %s Merge_passes: %d\n",
105 map { $_ || 0 }
106- @{$event}{qw(QC_Hit Full_scan Full_join Tmp_table Disk_tmp_table Filesort Disk_filesort Merge_passes)};
107+ @{$event}{qw(QC_Hit Full_scan Full_join Tmp_table Tmp_table_on_disk Filesort Filesort_on_disk Merge_passes)};
108
109 if ( exists $event->{InnoDB_IO_r_ops} ) {
110 # Optional 3 lines of Percona-patched InnoDB attribs.
111
112=== modified file 't/lib/SlowLogParser.t'
113--- t/lib/SlowLogParser.t 2012-03-06 13:56:08 +0000
114+++ t/lib/SlowLogParser.t 2012-05-31 14:13:25 +0000
115@@ -60,7 +60,7 @@
116 result => [
117 { arg => 'BEGIN',
118 ts => '071218 11:48:27',
119- Disk_filesort => 'No',
120+ Filesort_on_disk => 'No',
121 Merge_passes => '0',
122 Full_scan => 'No',
123 Full_join => 'No',
124@@ -70,7 +70,7 @@
125 Rows_examined => '0',
126 Filesort => 'No',
127 Query_time => '0.000012',
128- Disk_tmp_table => 'No',
129+ Tmp_table_on_disk => 'No',
130 Rows_sent => '0',
131 Lock_time => '0.000000',
132 pos_in_log => 0,
133@@ -85,7 +85,7 @@
134 arg => 'update db2.tuningdetail_21_265507 n
135 inner join db1.gonzo a using(gonzo)
136 set n.column1 = a.column1, n.word3 = a.word3',
137- Disk_filesort => 'No',
138+ Filesort_on_disk => 'No',
139 Merge_passes => '0',
140 Full_scan => 'Yes',
141 Full_join => 'No',
142@@ -95,10 +95,10 @@
143 Rows_examined => '62951',
144 Filesort => 'No',
145 Query_time => '0.726052',
146- Disk_tmp_table => 'No',
147+ Tmp_table_on_disk => 'No',
148 Rows_sent => '0',
149 Lock_time => '0.000091',
150- pos_in_log => 332,
151+ pos_in_log => 338,
152 cmd => 'Query',
153 user => '[SQL_SLAVE]',
154 host => '',
155@@ -118,16 +118,16 @@
156 Lock_time => '0.000077',
157 InnoDB_rec_lock_wait => '0.000000',
158 Full_scan => 'No',
159- Disk_filesort => 'No',
160+ Filesort_on_disk => 'No',
161 Thread_id => '10',
162 Tmp_table => 'No',
163 QC_Hit => 'No',
164 Rows_examined => '0',
165 InnoDB_IO_r_ops => '0',
166- Disk_tmp_table => 'No',
167+ Tmp_table_on_disk => 'No',
168 Query_time => '0.000512',
169 InnoDB_IO_r_wait => '0.000000',
170- pos_in_log => 803,
171+ pos_in_log => 815,
172 cmd => 'Query',
173 user => '[SQL_SLAVE]',
174 host => '',
175@@ -147,16 +147,16 @@
176 Lock_time => '0.000028',
177 InnoDB_rec_lock_wait => '0.000000',
178 Full_scan => 'No',
179- Disk_filesort => 'No',
180+ Filesort_on_disk => 'No',
181 Thread_id => '10',
182 Tmp_table => 'No',
183 QC_Hit => 'No',
184 Rows_examined => '0',
185 InnoDB_IO_r_ops => '0',
186- Disk_tmp_table => 'No',
187+ Tmp_table_on_disk => 'No',
188 Query_time => '0.033384',
189 InnoDB_IO_r_wait => '0.000000',
190- pos_in_log => 1316,
191+ pos_in_log => 1334,
192 cmd => 'Query',
193 user => '[SQL_SLAVE]',
194 host => '',
195@@ -177,16 +177,16 @@
196 Lock_time => '0.000027',
197 InnoDB_rec_lock_wait => '0.000000',
198 Full_scan => 'No',
199- Disk_filesort => 'No',
200+ Filesort_on_disk => 'No',
201 Thread_id => '10',
202 Tmp_table => 'No',
203 QC_Hit => 'No',
204 Rows_examined => '0',
205 InnoDB_IO_r_ops => '0',
206- Disk_tmp_table => 'No',
207+ Tmp_table_on_disk => 'No',
208 Query_time => '0.000530',
209 InnoDB_IO_r_wait => '0.000000',
210- pos_in_log => 1840,
211+ pos_in_log => 1864,
212 cmd => 'Query',
213 user => '[SQL_SLAVE]',
214 host => '',
215@@ -205,16 +205,16 @@
216 Lock_time => '0.000027',
217 InnoDB_rec_lock_wait => '0.000000',
218 Full_scan => 'No',
219- Disk_filesort => 'No',
220+ Filesort_on_disk => 'No',
221 Thread_id => '10',
222 Tmp_table => 'No',
223 QC_Hit => 'No',
224 Rows_examined => '0',
225 InnoDB_IO_r_ops => '0',
226- Disk_tmp_table => 'No',
227+ Tmp_table_on_disk => 'No',
228 Query_time => '0.000530',
229 InnoDB_IO_r_wait => '0.000000',
230- pos_in_log => 2363,
231+ pos_in_log => 2393,
232 cmd => 'Query',
233 user => '[SQL_SLAVE]',
234 host => '',
235@@ -235,16 +235,16 @@
236 Lock_time => '0.000027',
237 InnoDB_rec_lock_wait => '0.000000',
238 Full_scan => 'No',
239- Disk_filesort => 'No',
240+ Filesort_on_disk => 'No',
241 Thread_id => '10',
242 Tmp_table => 'No',
243 QC_Hit => 'No',
244 Rows_examined => '0',
245 InnoDB_IO_r_ops => '0',
246- Disk_tmp_table => 'No',
247+ Tmp_table_on_disk => 'No',
248 Query_time => '0.000530',
249 InnoDB_IO_r_wait => '0.000000',
250- pos_in_log => 2825,
251+ pos_in_log => 2861,
252 cmd => 'Query',
253 user => '[SQL_SLAVE]',
254 host => '',
255@@ -263,16 +263,16 @@
256 Lock_time => '0.000027',
257 InnoDB_rec_lock_wait => '0.000000',
258 Full_scan => 'No',
259- Disk_filesort => 'No',
260+ Filesort_on_disk => 'No',
261 Thread_id => '10',
262 Tmp_table => 'No',
263 QC_Hit => 'No',
264 Rows_examined => '0',
265 InnoDB_IO_r_ops => '0',
266- Disk_tmp_table => 'No',
267+ Tmp_table_on_disk => 'No',
268 Query_time => '0.000530',
269 InnoDB_IO_r_wait => '0.000000',
270- pos_in_log => 3332,
271+ pos_in_log => 3374,
272 cmd => 'Query',
273 user => '[SQL_SLAVE]',
274 host => '',
275@@ -322,8 +322,8 @@
276 parser => $p,
277 file => "$sample/slow003.txt",
278 result => [
279- { Disk_filesort => 'No',
280- Disk_tmp_table => 'No',
281+ { Filesort_on_disk => 'No',
282+ Tmp_table_on_disk => 'No',
283 Filesort => 'No',
284 Full_join => 'No',
285 Full_scan => 'No',
286@@ -374,7 +374,7 @@
287 result => [
288 { arg => "foo\nbar\n\t\t\t0 AS counter\nbaz",
289 ts => '071218 11:48:27',
290- Disk_filesort => 'No',
291+ Filesort_on_disk => 'No',
292 Merge_passes => '0',
293 Full_scan => 'No',
294 Full_join => 'No',
295@@ -384,7 +384,7 @@
296 Rows_examined => '0',
297 Filesort => 'No',
298 Query_time => '0.000012',
299- Disk_tmp_table => 'No',
300+ Tmp_table_on_disk => 'No',
301 Rows_sent => '0',
302 Lock_time => '0.000000',
303 pos_in_log => 0,
304@@ -402,8 +402,8 @@
305 parser => $p,
306 file => "$sample/slow006.txt",
307 result => [
308- { Disk_filesort => 'No',
309- Disk_tmp_table => 'No',
310+ { Filesort_on_disk => 'No',
311+ Tmp_table_on_disk => 'No',
312 Filesort => 'No',
313 Full_join => 'No',
314 Full_scan => 'No',
315@@ -425,8 +425,8 @@
316 user => '[SQL_SLAVE]',
317 bytes => 23,
318 },
319- { Disk_filesort => 'No',
320- Disk_tmp_table => 'No',
321+ { Filesort_on_disk => 'No',
322+ Tmp_table_on_disk => 'No',
323 Filesort => 'No',
324 Full_join => 'No',
325 Full_scan => 'No',
326@@ -443,13 +443,13 @@
327 cmd => 'Query',
328 host => '',
329 ip => '',
330- pos_in_log => '363',
331+ pos_in_log => '369',
332 ts => '071218 11:48:57',
333 user => '[SQL_SLAVE]',
334 bytes => 23,
335 },
336- { Disk_filesort => 'No',
337- Disk_tmp_table => 'No',
338+ { Filesort_on_disk => 'No',
339+ Tmp_table_on_disk => 'No',
340 Filesort => 'No',
341 Full_join => 'No',
342 Full_scan => 'No',
343@@ -466,13 +466,13 @@
344 db => 'bar',
345 host => '',
346 ip => '',
347- pos_in_log => '725',
348+ pos_in_log => '737',
349 ts => '071218 11:48:57',
350 user => '[SQL_SLAVE]',
351 bytes => 23,
352 },
353- { Disk_filesort => 'No',
354- Disk_tmp_table => 'No',
355+ { Filesort_on_disk => 'No',
356+ Tmp_table_on_disk => 'No',
357 Filesort => 'No',
358 Full_join => 'No',
359 Full_scan => 'No',
360@@ -489,13 +489,13 @@
361 cmd => 'Query',
362 host => '',
363 ip => '',
364- pos_in_log => '1083',
365+ pos_in_log => '1101',
366 ts => '071218 11:49:05',
367 user => '[SQL_SLAVE]',
368 bytes => 23,
369 },
370- { Disk_filesort => 'No',
371- Disk_tmp_table => 'No',
372+ { Filesort_on_disk => 'No',
373+ Tmp_table_on_disk => 'No',
374 Filesort => 'No',
375 Full_join => 'No',
376 Full_scan => 'No',
377@@ -512,13 +512,13 @@
378 db => 'bar',
379 host => '',
380 ip => '',
381- pos_in_log => '1445',
382+ pos_in_log => '1469',
383 ts => '071218 11:49:07',
384 user => '[SQL_SLAVE]',
385 bytes => 23,
386 },
387- { Disk_filesort => 'No',
388- Disk_tmp_table => 'No',
389+ { Filesort_on_disk => 'No',
390+ Tmp_table_on_disk => 'No',
391 Filesort => 'No',
392 Full_join => 'No',
393 Full_scan => 'No',
394@@ -535,7 +535,7 @@
395 cmd => 'Query',
396 host => '',
397 ip => '',
398- pos_in_log => '1803',
399+ pos_in_log => '1833',
400 ts => '071218 11:49:30',
401 user => '[SQL_SLAVE]',
402 bytes => 23,
403@@ -551,7 +551,7 @@
404 { Schema => 'food',
405 arg => 'SELECT fruit FROM trees',
406 ts => '071218 11:48:27',
407- Disk_filesort => 'No',
408+ Filesort_on_disk => 'No',
409 Merge_passes => '0',
410 Full_scan => 'No',
411 Full_join => 'No',
412@@ -561,7 +561,7 @@
413 Rows_examined => '0',
414 Filesort => 'No',
415 Query_time => '0.000012',
416- Disk_tmp_table => 'No',
417+ Tmp_table_on_disk => 'No',
418 Rows_sent => '0',
419 Lock_time => '0.000000',
420 pos_in_log => 0,
421@@ -1035,8 +1035,8 @@
422 parser => $p,
423 file => "$sample/slow022.txt",
424 result => [
425- { Disk_filesort => 'No',
426- Disk_tmp_table => 'No',
427+ { Filesort_on_disk => 'No',
428+ Tmp_table_on_disk => 'No',
429 Filesort => 'No',
430 Full_join => 'No',
431 Full_scan => 'No',
432@@ -1057,8 +1057,8 @@
433 user => '[SQL_SLAVE]',
434 bytes => 23,
435 },
436- { Disk_filesort => 'No',
437- Disk_tmp_table => 'No',
438+ { Filesort_on_disk => 'No',
439+ Tmp_table_on_disk => 'No',
440 Filesort => 'No',
441 Full_join => 'No',
442 Full_scan => 'No',
443@@ -1075,12 +1075,12 @@
444 cmd => 'Query',
445 host => '',
446 ip => '',
447- pos_in_log => '363',
448+ pos_in_log => '369',
449 user => '[SQL_SLAVE]',
450 bytes => 23,
451 },
452- { Disk_filesort => 'No',
453- Disk_tmp_table => 'No',
454+ { Filesort_on_disk => 'No',
455+ Tmp_table_on_disk => 'No',
456 Filesort => 'No',
457 Full_join => 'No',
458 Full_scan => 'No',
459@@ -1097,12 +1097,12 @@
460 db => 'bar',
461 host => '',
462 ip => '',
463- pos_in_log => '725',
464+ pos_in_log => '737',
465 user => '[SQL_SLAVE]',
466 bytes => 23,
467 },
468- { Disk_filesort => 'No',
469- Disk_tmp_table => 'No',
470+ { Filesort_on_disk => 'No',
471+ Tmp_table_on_disk => 'No',
472 Filesort => 'No',
473 Full_join => 'No',
474 Full_scan => 'No',
475@@ -1119,12 +1119,12 @@
476 cmd => 'Query',
477 host => '',
478 ip => '',
479- pos_in_log => '1083',
480+ pos_in_log => '1101',
481 user => '[SQL_SLAVE]',
482 bytes => 23,
483 },
484- { Disk_filesort => 'No',
485- Disk_tmp_table => 'No',
486+ { Filesort_on_disk => 'No',
487+ Tmp_table_on_disk => 'No',
488 Filesort => 'No',
489 Full_join => 'No',
490 Full_scan => 'No',
491@@ -1141,12 +1141,12 @@
492 db => 'bar',
493 host => '',
494 ip => '',
495- pos_in_log => '1445',
496+ pos_in_log => '1469',
497 user => '[SQL_SLAVE]',
498 bytes => 23,
499 },
500- { Disk_filesort => 'No',
501- Disk_tmp_table => 'No',
502+ { Filesort_on_disk => 'No',
503+ Tmp_table_on_disk => 'No',
504 Filesort => 'No',
505 Full_join => 'No',
506 Full_scan => 'No',
507@@ -1163,7 +1163,7 @@
508 cmd => 'Query',
509 host => '',
510 ip => '',
511- pos_in_log => '1803',
512+ pos_in_log => '1833',
513 user => '[SQL_SLAVE]',
514 bytes => 23,
515 },
516
517=== modified file 't/lib/samples/slowlogs/slow002.txt'
518--- t/lib/samples/slowlogs/slow002.txt 2011-06-24 17:22:06 +0000
519+++ t/lib/samples/slowlogs/slow002.txt 2012-05-31 14:13:25 +0000
520@@ -1,15 +1,15 @@
521 # Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
522 # Thread_id: 10
523 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
524-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
525-# Filesort: No Disk_filesort: No Merge_passes: 0
526+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
527+# Filesort: No Filesort_on_disk: No Merge_passes: 0
528 # No InnoDB statistics available for this query
529 BEGIN;
530 # User@Host: [SQL_SLAVE] @ []
531 # Thread_id: 10
532 # Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
533-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
534-# Filesort: No Disk_filesort: No Merge_passes: 0
535+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
536+# Filesort: No Filesort_on_disk: No Merge_passes: 0
537 # No InnoDB statistics available for this query
538 use db1;
539 SET timestamp=1197996507;
540@@ -19,8 +19,8 @@
541 # User@Host: [SQL_SLAVE] @ []
542 # Thread_id: 10
543 # Query_time: 0.000512 Lock_time: 0.000077 Rows_sent: 0 Rows_examined: 0
544-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
545-# Filesort: No Disk_filesort: No Merge_passes: 0
546+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
547+# Filesort: No Filesort_on_disk: No Merge_passes: 0
548 # InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
549 # InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
550 # InnoDB_pages_distinct: 24
551@@ -30,8 +30,8 @@
552 # User@Host: [SQL_SLAVE] @ []
553 # Thread_id: 10
554 # Query_time: 0.033384 Lock_time: 0.000028 Rows_sent: 0 Rows_examined: 0
555-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
556-# Filesort: No Disk_filesort: No Merge_passes: 0
557+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
558+# Filesort: No Filesort_on_disk: No Merge_passes: 0
559 # InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
560 # InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
561 # InnoDB_pages_distinct: 11
562@@ -41,8 +41,8 @@
563 # User@Host: [SQL_SLAVE] @ []
564 # Thread_id: 10
565 # Query_time: 0.000530 Lock_time: 0.000027 Rows_sent: 0 Rows_examined: 0
566-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
567-# Filesort: No Disk_filesort: No Merge_passes: 0
568+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
569+# Filesort: No Filesort_on_disk: No Merge_passes: 0
570 # InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
571 # InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
572 # InnoDB_pages_distinct: 18
573@@ -52,8 +52,8 @@
574 # User@Host: [SQL_SLAVE] @ []
575 # Thread_id: 10
576 # Query_time: 0.000530 Lock_time: 0.000027 Rows_sent: 0 Rows_examined: 0
577-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
578-# Filesort: No Disk_filesort: No Merge_passes: 0
579+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
580+# Filesort: No Filesort_on_disk: No Merge_passes: 0
581 # InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
582 # InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
583 # InnoDB_pages_distinct: 18
584@@ -62,8 +62,8 @@
585 # User@Host: [SQL_SLAVE] @ []
586 # Thread_id: 10
587 # Query_time: 0.000530 Lock_time: 0.000027 Rows_sent: 0 Rows_examined: 0
588-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
589-# Filesort: No Disk_filesort: No Merge_passes: 0
590+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
591+# Filesort: No Filesort_on_disk: No Merge_passes: 0
592 # InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
593 # InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
594 # InnoDB_pages_distinct: 18
595@@ -74,8 +74,8 @@
596 # User@Host: [SQL_SLAVE] @ []
597 # Thread_id: 10
598 # Query_time: 0.000530 Lock_time: 0.000027 Rows_sent: 0 Rows_examined: 0
599-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
600-# Filesort: No Disk_filesort: No Merge_passes: 0
601+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
602+# Filesort: No Filesort_on_disk: No Merge_passes: 0
603 # InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
604 # InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
605 # InnoDB_pages_distinct: 18
606
607=== modified file 't/lib/samples/slowlogs/slow003.txt'
608--- t/lib/samples/slowlogs/slow003.txt 2011-06-24 17:22:06 +0000
609+++ t/lib/samples/slowlogs/slow003.txt 2012-05-31 14:13:25 +0000
610@@ -2,7 +2,7 @@
611 # Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
612 # Thread_id: 10
613 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
614-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
615-# Filesort: No Disk_filesort: No Merge_passes: 0
616+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
617+# Filesort: No Filesort_on_disk: No Merge_passes: 0
618 # No InnoDB statistics available for this query
619 BEGIN;
620
621=== modified file 't/lib/samples/slowlogs/slow005.txt'
622--- t/lib/samples/slowlogs/slow005.txt 2011-06-24 17:22:06 +0000
623+++ t/lib/samples/slowlogs/slow005.txt 2012-05-31 14:13:25 +0000
624@@ -1,8 +1,8 @@
625 # Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
626 # Thread_id: 10
627 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
628-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
629-# Filesort: No Disk_filesort: No Merge_passes: 0
630+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
631+# Filesort: No Filesort_on_disk: No Merge_passes: 0
632 # No InnoDB statistics available for this query
633 foo
634 bar
635
636=== modified file 't/lib/samples/slowlogs/slow006.txt'
637--- t/lib/samples/slowlogs/slow006.txt 2011-06-24 17:22:06 +0000
638+++ t/lib/samples/slowlogs/slow006.txt 2012-05-31 14:13:25 +0000
639@@ -1,44 +1,44 @@
640 # Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
641 # Thread_id: 10 Schema: foo
642 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
643-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
644-# Filesort: No Disk_filesort: No Merge_passes: 0
645+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
646+# Filesort: No Filesort_on_disk: No Merge_passes: 0
647 # No InnoDB statistics available for this query
648 SELECT col FROM foo_tbl;
649 # Time: 071218 11:48:57 # User@Host: [SQL_SLAVE] @ []
650 # Thread_id: 10 Schema: foo
651 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
652-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
653-# Filesort: No Disk_filesort: No Merge_passes: 0
654+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
655+# Filesort: No Filesort_on_disk: No Merge_passes: 0
656 # No InnoDB statistics available for this query
657 SELECT col FROM foo_tbl;
658 # Time: 071218 11:48:57 # User@Host: [SQL_SLAVE] @ []
659 # Thread_id: 20
660 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
661-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
662-# Filesort: No Disk_filesort: No Merge_passes: 0
663+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
664+# Filesort: No Filesort_on_disk: No Merge_passes: 0
665 # No InnoDB statistics available for this query
666 use bar;
667 SELECT col FROM bar_tbl;
668 # Time: 071218 11:49:05 # User@Host: [SQL_SLAVE] @ []
669 # Thread_id: 10 Schema: bar
670 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
671-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
672-# Filesort: No Disk_filesort: No Merge_passes: 0
673+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
674+# Filesort: No Filesort_on_disk: No Merge_passes: 0
675 # No InnoDB statistics available for this query
676 SELECT col FROM bar_tbl;
677 # Time: 071218 11:49:07 # User@Host: [SQL_SLAVE] @ []
678 # Thread_id: 20
679 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
680-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
681-# Filesort: No Disk_filesort: No Merge_passes: 0
682+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
683+# Filesort: No Filesort_on_disk: No Merge_passes: 0
684 # No InnoDB statistics available for this query
685 use bar;
686 SELECT col FROM bar_tbl;
687 # Time: 071218 11:49:30 # User@Host: [SQL_SLAVE] @ []
688 # Thread_id: 30 Schema: foo
689 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
690-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
691-# Filesort: No Disk_filesort: No Merge_passes: 0
692+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
693+# Filesort: No Filesort_on_disk: No Merge_passes: 0
694 # No InnoDB statistics available for this query
695 SELECT col FROM foo_tbl;
696
697=== modified file 't/lib/samples/slowlogs/slow007.txt'
698--- t/lib/samples/slowlogs/slow007.txt 2011-06-24 17:22:06 +0000
699+++ t/lib/samples/slowlogs/slow007.txt 2012-05-31 14:13:25 +0000
700@@ -1,7 +1,7 @@
701 # Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
702 # Thread_id: 3 Schema: food
703 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
704-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
705-# Filesort: No Disk_filesort: No Merge_passes: 0
706+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
707+# Filesort: No Filesort_on_disk: No Merge_passes: 0
708 # No InnoDB statistics available for this query
709 SELECT fruit FROM trees;
710
711=== modified file 't/lib/samples/slowlogs/slow022.txt'
712--- t/lib/samples/slowlogs/slow022.txt 2011-06-24 17:22:06 +0000
713+++ t/lib/samples/slowlogs/slow022.txt 2012-05-31 14:13:25 +0000
714@@ -1,44 +1,44 @@
715 # Time: margdl 11:48:27 # User@Host: [SQL_SLAVE] @ []
716 # Thread_id: 10 Schema: foo
717 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
718-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
719-# Filesort: No Disk_filesort: No Merge_passes: 0
720+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
721+# Filesort: No Filesort_on_disk: No Merge_passes: 0
722 # No InnoDB statistics available for this query
723 SELECT col FROM foo_tbl;
724 # Time: margdl 11:48:57 # User@Host: [SQL_SLAVE] @ []
725 # Thread_id: 10 Schema: foo
726 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
727-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
728-# Filesort: No Disk_filesort: No Merge_passes: 0
729+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
730+# Filesort: No Filesort_on_disk: No Merge_passes: 0
731 # No InnoDB statistics available for this query
732 SELECT col FROM foo_tbl;
733 # Time: margdl 11:48:57 # User@Host: [SQL_SLAVE] @ []
734 # Thread_id: 20
735 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
736-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
737-# Filesort: No Disk_filesort: No Merge_passes: 0
738+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
739+# Filesort: No Filesort_on_disk: No Merge_passes: 0
740 # No InnoDB statistics available for this query
741 use bar;
742 SELECT col FROM bar_tbl;
743 # Time: margdl 11:49:05 # User@Host: [SQL_SLAVE] @ []
744 # Thread_id: 10 Schema: bar
745 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
746-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
747-# Filesort: No Disk_filesort: No Merge_passes: 0
748+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
749+# Filesort: No Filesort_on_disk: No Merge_passes: 0
750 # No InnoDB statistics available for this query
751 SELECT col FROM bar_tbl;
752 # Time: margdl 11:49:07 # User@Host: [SQL_SLAVE] @ []
753 # Thread_id: 20
754 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
755-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
756-# Filesort: No Disk_filesort: No Merge_passes: 0
757+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
758+# Filesort: No Filesort_on_disk: No Merge_passes: 0
759 # No InnoDB statistics available for this query
760 use bar;
761 SELECT col FROM bar_tbl;
762 # Time: margdl 11:49:30 # User@Host: [SQL_SLAVE] @ []
763 # Thread_id: 30 Schema: foo
764 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
765-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
766-# Filesort: No Disk_filesort: No Merge_passes: 0
767+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
768+# Filesort: No Filesort_on_disk: No Merge_passes: 0
769 # No InnoDB statistics available for this query
770 SELECT col FROM foo_tbl;
771
772=== modified file 't/lib/samples/slowlogs/slow030.txt'
773--- t/lib/samples/slowlogs/slow030.txt 2011-06-24 17:22:06 +0000
774+++ t/lib/samples/slowlogs/slow030.txt 2012-05-31 14:13:25 +0000
775@@ -1,907 +1,907 @@
776 # Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
777-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
778-# Filesort: No Disk_filesort: No Merge_passes: 0
779-# No InnoDB statistics available for this query
780-SELECT * FROM foo;
781-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
782-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
783-# Filesort: No Disk_filesort: No Merge_passes: 0
784-# No InnoDB statistics available for this query
785-SELECT * FROM foo;
786-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
787-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
788-# Filesort: No Disk_filesort: No Merge_passes: 0
789-# No InnoDB statistics available for this query
790-SELECT * FROM foo;
791-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
792-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
793-# Filesort: No Disk_filesort: No Merge_passes: 0
794-# No InnoDB statistics available for this query
795-SELECT * FROM foo;
796-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
797-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
798-# Filesort: No Disk_filesort: No Merge_passes: 0
799-# No InnoDB statistics available for this query
800-SELECT * FROM foo;
801-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
802-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
803-# Filesort: No Disk_filesort: No Merge_passes: 0
804-# No InnoDB statistics available for this query
805-SELECT * FROM foo;
806-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
807-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
808-# Filesort: No Disk_filesort: No Merge_passes: 0
809-# No InnoDB statistics available for this query
810-SELECT * FROM foo;
811-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
812-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
813-# Filesort: No Disk_filesort: No Merge_passes: 0
814-# No InnoDB statistics available for this query
815-SELECT * FROM foo;
816-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
817-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
818-# Filesort: No Disk_filesort: No Merge_passes: 0
819-# No InnoDB statistics available for this query
820-SELECT * FROM foo;
821-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
822-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
823-# Filesort: No Disk_filesort: No Merge_passes: 0
824-# No InnoDB statistics available for this query
825-SELECT * FROM foo;
826-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
827-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
828-# Filesort: No Disk_filesort: No Merge_passes: 0
829-# No InnoDB statistics available for this query
830-SELECT * FROM foo;
831-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
832-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
833-# Filesort: No Disk_filesort: No Merge_passes: 0
834-# No InnoDB statistics available for this query
835-SELECT * FROM foo;
836-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
837-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
838-# Filesort: No Disk_filesort: No Merge_passes: 0
839-# No InnoDB statistics available for this query
840-SELECT * FROM foo;
841-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
842-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
843-# Filesort: No Disk_filesort: No Merge_passes: 0
844-# No InnoDB statistics available for this query
845-SELECT * FROM foo;
846-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
847-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
848-# Filesort: No Disk_filesort: No Merge_passes: 0
849-# No InnoDB statistics available for this query
850-SELECT * FROM foo;
851-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
852-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
853-# Filesort: No Disk_filesort: No Merge_passes: 0
854-# No InnoDB statistics available for this query
855-SELECT * FROM foo;
856-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
857-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
858-# Filesort: No Disk_filesort: No Merge_passes: 0
859-# No InnoDB statistics available for this query
860-SELECT * FROM foo;
861-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
862-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
863-# Filesort: No Disk_filesort: No Merge_passes: 0
864-# No InnoDB statistics available for this query
865-SELECT * FROM foo;
866-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
867-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
868-# Filesort: No Disk_filesort: No Merge_passes: 0
869-# No InnoDB statistics available for this query
870-SELECT * FROM foo;
871-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
872-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
873-# Filesort: No Disk_filesort: No Merge_passes: 0
874-# No InnoDB statistics available for this query
875-SELECT * FROM foo;
876-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
877-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
878-# Filesort: No Disk_filesort: No Merge_passes: 0
879-# No InnoDB statistics available for this query
880-SELECT * FROM foo;
881-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
882-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
883-# Filesort: No Disk_filesort: No Merge_passes: 0
884-# No InnoDB statistics available for this query
885-SELECT * FROM foo;
886-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
887-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
888-# Filesort: No Disk_filesort: No Merge_passes: 0
889-# No InnoDB statistics available for this query
890-SELECT * FROM foo;
891-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
892-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
893-# Filesort: No Disk_filesort: No Merge_passes: 0
894-# No InnoDB statistics available for this query
895-SELECT * FROM foo;
896-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
897-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
898-# Filesort: No Disk_filesort: No Merge_passes: 0
899-# No InnoDB statistics available for this query
900-SELECT * FROM foo;
901-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
902-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
903-# Filesort: No Disk_filesort: No Merge_passes: 0
904-# No InnoDB statistics available for this query
905-SELECT * FROM foo;
906-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
907-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
908-# Filesort: No Disk_filesort: No Merge_passes: 0
909-# No InnoDB statistics available for this query
910-SELECT * FROM foo;
911-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
912-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
913-# Filesort: No Disk_filesort: No Merge_passes: 0
914-# No InnoDB statistics available for this query
915-SELECT * FROM foo;
916-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
917-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
918-# Filesort: No Disk_filesort: No Merge_passes: 0
919-# No InnoDB statistics available for this query
920-SELECT * FROM foo;
921-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
922-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
923-# Filesort: No Disk_filesort: No Merge_passes: 0
924-# No InnoDB statistics available for this query
925-SELECT * FROM foo;
926-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
927-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
928-# Filesort: No Disk_filesort: No Merge_passes: 0
929-# No InnoDB statistics available for this query
930-SELECT * FROM foo;
931-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
932-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
933-# Filesort: No Disk_filesort: No Merge_passes: 0
934-# No InnoDB statistics available for this query
935-SELECT * FROM foo;
936-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
937-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
938-# Filesort: No Disk_filesort: No Merge_passes: 0
939-# No InnoDB statistics available for this query
940-SELECT * FROM foo;
941-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
942-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
943-# Filesort: No Disk_filesort: No Merge_passes: 0
944-# No InnoDB statistics available for this query
945-SELECT * FROM foo;
946-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
947-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
948-# Filesort: No Disk_filesort: No Merge_passes: 0
949-# No InnoDB statistics available for this query
950-SELECT * FROM foo;
951-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
952-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
953-# Filesort: No Disk_filesort: No Merge_passes: 0
954-# No InnoDB statistics available for this query
955-SELECT * FROM foo;
956-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
957-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
958-# Filesort: No Disk_filesort: No Merge_passes: 0
959-# No InnoDB statistics available for this query
960-SELECT * FROM foo;
961-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
962-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
963-# Filesort: No Disk_filesort: No Merge_passes: 0
964-# No InnoDB statistics available for this query
965-SELECT * FROM foo;
966-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
967-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
968-# Filesort: No Disk_filesort: No Merge_passes: 0
969-# No InnoDB statistics available for this query
970-SELECT * FROM foo;
971-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
972-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
973-# Filesort: No Disk_filesort: No Merge_passes: 0
974-# No InnoDB statistics available for this query
975-SELECT * FROM foo;
976-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
977-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
978-# Filesort: No Disk_filesort: No Merge_passes: 0
979-# No InnoDB statistics available for this query
980-SELECT * FROM foo;
981-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
982-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
983-# Filesort: No Disk_filesort: No Merge_passes: 0
984-# No InnoDB statistics available for this query
985-SELECT * FROM foo;
986-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
987-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
988-# Filesort: No Disk_filesort: No Merge_passes: 0
989-# No InnoDB statistics available for this query
990-SELECT * FROM foo;
991-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
992-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
993-# Filesort: No Disk_filesort: No Merge_passes: 0
994-# No InnoDB statistics available for this query
995-SELECT * FROM foo;
996-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
997-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
998-# Filesort: No Disk_filesort: No Merge_passes: 0
999-# No InnoDB statistics available for this query
1000-SELECT * FROM foo;
1001-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1002-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1003-# Filesort: No Disk_filesort: No Merge_passes: 0
1004-# No InnoDB statistics available for this query
1005-SELECT * FROM foo;
1006-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1007-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1008-# Filesort: No Disk_filesort: No Merge_passes: 0
1009-# No InnoDB statistics available for this query
1010-SELECT * FROM foo;
1011-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1012-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1013-# Filesort: No Disk_filesort: No Merge_passes: 0
1014-# No InnoDB statistics available for this query
1015-SELECT * FROM foo;
1016-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1017-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1018-# Filesort: No Disk_filesort: No Merge_passes: 0
1019-# No InnoDB statistics available for this query
1020-SELECT * FROM foo;
1021-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1022-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1023-# Filesort: No Disk_filesort: No Merge_passes: 0
1024-# No InnoDB statistics available for this query
1025-SELECT * FROM foo;
1026-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1027-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1028-# Filesort: No Disk_filesort: No Merge_passes: 0
1029-# No InnoDB statistics available for this query
1030-SELECT * FROM foo;
1031-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1032-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1033-# Filesort: No Disk_filesort: No Merge_passes: 0
1034-# No InnoDB statistics available for this query
1035-SELECT * FROM foo;
1036-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1037-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1038-# Filesort: No Disk_filesort: No Merge_passes: 0
1039-# No InnoDB statistics available for this query
1040-SELECT * FROM foo;
1041-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1042-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1043-# Filesort: No Disk_filesort: No Merge_passes: 0
1044-# No InnoDB statistics available for this query
1045-SELECT * FROM foo;
1046-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1047-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1048-# Filesort: No Disk_filesort: No Merge_passes: 0
1049-# No InnoDB statistics available for this query
1050-SELECT * FROM foo;
1051-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1052-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1053-# Filesort: No Disk_filesort: No Merge_passes: 0
1054-# No InnoDB statistics available for this query
1055-SELECT * FROM foo;
1056-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1057-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1058-# Filesort: No Disk_filesort: No Merge_passes: 0
1059-# No InnoDB statistics available for this query
1060-SELECT * FROM foo;
1061-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1062-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1063-# Filesort: No Disk_filesort: No Merge_passes: 0
1064-# No InnoDB statistics available for this query
1065-SELECT * FROM foo;
1066-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1067-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1068-# Filesort: No Disk_filesort: No Merge_passes: 0
1069-# No InnoDB statistics available for this query
1070-SELECT * FROM foo;
1071-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1072-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1073-# Filesort: No Disk_filesort: No Merge_passes: 0
1074-# No InnoDB statistics available for this query
1075-SELECT * FROM foo;
1076-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1077-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1078-# Filesort: No Disk_filesort: No Merge_passes: 0
1079-# No InnoDB statistics available for this query
1080-SELECT * FROM foo;
1081-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1082-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1083-# Filesort: No Disk_filesort: No Merge_passes: 0
1084-# No InnoDB statistics available for this query
1085-SELECT * FROM foo;
1086-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1087-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1088-# Filesort: No Disk_filesort: No Merge_passes: 0
1089-# No InnoDB statistics available for this query
1090-SELECT * FROM foo;
1091-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1092-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1093-# Filesort: No Disk_filesort: No Merge_passes: 0
1094-# No InnoDB statistics available for this query
1095-SELECT * FROM foo;
1096-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1097-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1098-# Filesort: No Disk_filesort: No Merge_passes: 0
1099-# No InnoDB statistics available for this query
1100-SELECT * FROM foo;
1101-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1102-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1103-# Filesort: No Disk_filesort: No Merge_passes: 0
1104-# No InnoDB statistics available for this query
1105-SELECT * FROM foo;
1106-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1107-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1108-# Filesort: No Disk_filesort: No Merge_passes: 0
1109-# No InnoDB statistics available for this query
1110-SELECT * FROM foo;
1111-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1112-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1113-# Filesort: No Disk_filesort: No Merge_passes: 0
1114-# No InnoDB statistics available for this query
1115-SELECT * FROM foo;
1116-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1117-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1118-# Filesort: No Disk_filesort: No Merge_passes: 0
1119-# No InnoDB statistics available for this query
1120-SELECT * FROM foo;
1121-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1122-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1123-# Filesort: No Disk_filesort: No Merge_passes: 0
1124-# No InnoDB statistics available for this query
1125-SELECT * FROM foo;
1126-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1127-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1128-# Filesort: No Disk_filesort: No Merge_passes: 0
1129-# No InnoDB statistics available for this query
1130-SELECT * FROM foo;
1131-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1132-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1133-# Filesort: No Disk_filesort: No Merge_passes: 0
1134-# No InnoDB statistics available for this query
1135-SELECT * FROM foo;
1136-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1137-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1138-# Filesort: No Disk_filesort: No Merge_passes: 0
1139-# No InnoDB statistics available for this query
1140-SELECT * FROM foo;
1141-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1142-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1143-# Filesort: No Disk_filesort: No Merge_passes: 0
1144-# No InnoDB statistics available for this query
1145-SELECT * FROM foo;
1146-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1147-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1148-# Filesort: No Disk_filesort: No Merge_passes: 0
1149-# No InnoDB statistics available for this query
1150-SELECT * FROM foo;
1151-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1152-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1153-# Filesort: No Disk_filesort: No Merge_passes: 0
1154-# No InnoDB statistics available for this query
1155-SELECT * FROM foo;
1156-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1157-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1158-# Filesort: No Disk_filesort: No Merge_passes: 0
1159-# No InnoDB statistics available for this query
1160-SELECT * FROM foo;
1161-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1162-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1163-# Filesort: No Disk_filesort: No Merge_passes: 0
1164-# No InnoDB statistics available for this query
1165-SELECT * FROM foo;
1166-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1167-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1168-# Filesort: No Disk_filesort: No Merge_passes: 0
1169-# No InnoDB statistics available for this query
1170-SELECT * FROM foo;
1171-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1172-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1173-# Filesort: No Disk_filesort: No Merge_passes: 0
1174-# No InnoDB statistics available for this query
1175-SELECT * FROM foo;
1176-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1177-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1178-# Filesort: No Disk_filesort: No Merge_passes: 0
1179-# No InnoDB statistics available for this query
1180-SELECT * FROM foo;
1181-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1182-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1183-# Filesort: No Disk_filesort: No Merge_passes: 0
1184-# No InnoDB statistics available for this query
1185-SELECT * FROM foo;
1186-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1187-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1188-# Filesort: No Disk_filesort: No Merge_passes: 0
1189-# No InnoDB statistics available for this query
1190-SELECT * FROM foo;
1191-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1192-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1193-# Filesort: No Disk_filesort: No Merge_passes: 0
1194-# No InnoDB statistics available for this query
1195-SELECT * FROM foo;
1196-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1197-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1198-# Filesort: No Disk_filesort: No Merge_passes: 0
1199-# No InnoDB statistics available for this query
1200-SELECT * FROM foo;
1201-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1202-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1203-# Filesort: No Disk_filesort: No Merge_passes: 0
1204-# No InnoDB statistics available for this query
1205-SELECT * FROM foo;
1206-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1207-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1208-# Filesort: No Disk_filesort: No Merge_passes: 0
1209-# No InnoDB statistics available for this query
1210-SELECT * FROM foo;
1211-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1212-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1213-# Filesort: No Disk_filesort: No Merge_passes: 0
1214-# No InnoDB statistics available for this query
1215-SELECT * FROM foo;
1216-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1217-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1218-# Filesort: No Disk_filesort: No Merge_passes: 0
1219-# No InnoDB statistics available for this query
1220-SELECT * FROM foo;
1221-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1222-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1223-# Filesort: No Disk_filesort: No Merge_passes: 0
1224-# No InnoDB statistics available for this query
1225-SELECT * FROM foo;
1226-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1227-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1228-# Filesort: No Disk_filesort: No Merge_passes: 0
1229-# No InnoDB statistics available for this query
1230-SELECT * FROM foo;
1231-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1232-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1233-# Filesort: No Disk_filesort: No Merge_passes: 0
1234-# No InnoDB statistics available for this query
1235-SELECT * FROM foo;
1236-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1237-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1238-# Filesort: No Disk_filesort: No Merge_passes: 0
1239-# No InnoDB statistics available for this query
1240-SELECT * FROM foo;
1241-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1242-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1243-# Filesort: No Disk_filesort: No Merge_passes: 0
1244-# No InnoDB statistics available for this query
1245-SELECT * FROM foo;
1246-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1247-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1248-# Filesort: No Disk_filesort: No Merge_passes: 0
1249-# No InnoDB statistics available for this query
1250-SELECT * FROM foo;
1251-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1252-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1253-# Filesort: No Disk_filesort: No Merge_passes: 0
1254-# No InnoDB statistics available for this query
1255-SELECT * FROM foo;
1256-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1257-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1258-# Filesort: No Disk_filesort: No Merge_passes: 0
1259-# No InnoDB statistics available for this query
1260-SELECT * FROM foo;
1261-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1262-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1263-# Filesort: No Disk_filesort: No Merge_passes: 0
1264-# No InnoDB statistics available for this query
1265-SELECT * FROM foo;
1266-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1267-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1268-# Filesort: No Disk_filesort: No Merge_passes: 0
1269-# No InnoDB statistics available for this query
1270-SELECT * FROM foo;
1271-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1272-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1273-# Filesort: No Disk_filesort: No Merge_passes: 0
1274-# No InnoDB statistics available for this query
1275-SELECT * FROM foo;
1276-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1277-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1278-# Filesort: No Disk_filesort: No Merge_passes: 0
1279-# No InnoDB statistics available for this query
1280-SELECT * FROM foo;
1281-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1282-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1283-# Filesort: No Disk_filesort: No Merge_passes: 0
1284-# No InnoDB statistics available for this query
1285-SELECT * FROM foo;
1286-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1287-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1288-# Filesort: No Disk_filesort: No Merge_passes: 0
1289-# No InnoDB statistics available for this query
1290-SELECT * FROM foo;
1291-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1292-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1293-# Filesort: No Disk_filesort: No Merge_passes: 0
1294-# No InnoDB statistics available for this query
1295-SELECT * FROM foo;
1296-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1297-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1298-# Filesort: No Disk_filesort: No Merge_passes: 0
1299-# No InnoDB statistics available for this query
1300-SELECT * FROM foo;
1301-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1302-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1303-# Filesort: No Disk_filesort: No Merge_passes: 0
1304-# No InnoDB statistics available for this query
1305-SELECT * FROM foo;
1306-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1307-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1308-# Filesort: No Disk_filesort: No Merge_passes: 0
1309-# No InnoDB statistics available for this query
1310-SELECT * FROM foo;
1311-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1312-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1313-# Filesort: No Disk_filesort: No Merge_passes: 0
1314-# No InnoDB statistics available for this query
1315-SELECT * FROM foo;
1316-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1317-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1318-# Filesort: No Disk_filesort: No Merge_passes: 0
1319-# No InnoDB statistics available for this query
1320-SELECT * FROM foo;
1321-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1322-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1323-# Filesort: No Disk_filesort: No Merge_passes: 0
1324-# No InnoDB statistics available for this query
1325-SELECT * FROM foo;
1326-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1327-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1328-# Filesort: No Disk_filesort: No Merge_passes: 0
1329-# No InnoDB statistics available for this query
1330-SELECT * FROM foo;
1331-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1332-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1333-# Filesort: No Disk_filesort: No Merge_passes: 0
1334-# No InnoDB statistics available for this query
1335-SELECT * FROM foo;
1336-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1337-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1338-# Filesort: No Disk_filesort: No Merge_passes: 0
1339-# No InnoDB statistics available for this query
1340-SELECT * FROM foo;
1341-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1342-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1343-# Filesort: No Disk_filesort: No Merge_passes: 0
1344-# No InnoDB statistics available for this query
1345-SELECT * FROM foo;
1346-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1347-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1348-# Filesort: No Disk_filesort: No Merge_passes: 0
1349-# No InnoDB statistics available for this query
1350-SELECT * FROM foo;
1351-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1352-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1353-# Filesort: No Disk_filesort: No Merge_passes: 0
1354-# No InnoDB statistics available for this query
1355-SELECT * FROM foo;
1356-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1357-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1358-# Filesort: No Disk_filesort: No Merge_passes: 0
1359-# No InnoDB statistics available for this query
1360-SELECT * FROM foo;
1361-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1362-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1363-# Filesort: No Disk_filesort: No Merge_passes: 0
1364-# No InnoDB statistics available for this query
1365-SELECT * FROM foo;
1366-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1367-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1368-# Filesort: No Disk_filesort: No Merge_passes: 0
1369-# No InnoDB statistics available for this query
1370-SELECT * FROM foo;
1371-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1372-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1373-# Filesort: No Disk_filesort: No Merge_passes: 0
1374-# No InnoDB statistics available for this query
1375-SELECT * FROM foo;
1376-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1377-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1378-# Filesort: No Disk_filesort: No Merge_passes: 0
1379-# No InnoDB statistics available for this query
1380-SELECT * FROM foo;
1381-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1382-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1383-# Filesort: No Disk_filesort: No Merge_passes: 0
1384-# No InnoDB statistics available for this query
1385-SELECT * FROM foo;
1386-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1387-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1388-# Filesort: No Disk_filesort: No Merge_passes: 0
1389-# No InnoDB statistics available for this query
1390-SELECT * FROM foo;
1391-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1392-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1393-# Filesort: No Disk_filesort: No Merge_passes: 0
1394-# No InnoDB statistics available for this query
1395-SELECT * FROM foo;
1396-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1397-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1398-# Filesort: No Disk_filesort: No Merge_passes: 0
1399-# No InnoDB statistics available for this query
1400-SELECT * FROM foo;
1401-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1402-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1403-# Filesort: No Disk_filesort: No Merge_passes: 0
1404-# No InnoDB statistics available for this query
1405-SELECT * FROM foo;
1406-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1407-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1408-# Filesort: No Disk_filesort: No Merge_passes: 0
1409-# No InnoDB statistics available for this query
1410-SELECT * FROM foo;
1411-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1412-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1413-# Filesort: No Disk_filesort: No Merge_passes: 0
1414-# No InnoDB statistics available for this query
1415-SELECT * FROM foo;
1416-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1417-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1418-# Filesort: No Disk_filesort: No Merge_passes: 0
1419-# No InnoDB statistics available for this query
1420-SELECT * FROM foo;
1421-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1422-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1423-# Filesort: No Disk_filesort: No Merge_passes: 0
1424-# No InnoDB statistics available for this query
1425-SELECT * FROM foo;
1426-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1427-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1428-# Filesort: No Disk_filesort: No Merge_passes: 0
1429-# No InnoDB statistics available for this query
1430-SELECT * FROM foo;
1431-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1432-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1433-# Filesort: No Disk_filesort: No Merge_passes: 0
1434-# No InnoDB statistics available for this query
1435-SELECT * FROM foo;
1436-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1437-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1438-# Filesort: No Disk_filesort: No Merge_passes: 0
1439-# No InnoDB statistics available for this query
1440-SELECT * FROM foo;
1441-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1442-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1443-# Filesort: No Disk_filesort: No Merge_passes: 0
1444-# No InnoDB statistics available for this query
1445-SELECT * FROM foo;
1446-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1447-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1448-# Filesort: No Disk_filesort: No Merge_passes: 0
1449-# No InnoDB statistics available for this query
1450-SELECT * FROM foo;
1451-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1452-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1453-# Filesort: No Disk_filesort: No Merge_passes: 0
1454-# No InnoDB statistics available for this query
1455-SELECT * FROM foo;
1456-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1457-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1458-# Filesort: No Disk_filesort: No Merge_passes: 0
1459-# No InnoDB statistics available for this query
1460-SELECT * FROM foo;
1461-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1462-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1463-# Filesort: No Disk_filesort: No Merge_passes: 0
1464-# No InnoDB statistics available for this query
1465-SELECT * FROM foo;
1466-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1467-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1468-# Filesort: No Disk_filesort: No Merge_passes: 0
1469-# No InnoDB statistics available for this query
1470-SELECT * FROM foo;
1471-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1472-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1473-# Filesort: No Disk_filesort: No Merge_passes: 0
1474-# No InnoDB statistics available for this query
1475-SELECT * FROM foo;
1476-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1477-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1478-# Filesort: No Disk_filesort: No Merge_passes: 0
1479-# No InnoDB statistics available for this query
1480-SELECT * FROM foo;
1481-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1482-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1483-# Filesort: No Disk_filesort: No Merge_passes: 0
1484-# No InnoDB statistics available for this query
1485-SELECT * FROM foo;
1486-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1487-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1488-# Filesort: No Disk_filesort: No Merge_passes: 0
1489-# No InnoDB statistics available for this query
1490-SELECT * FROM foo;
1491-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1492-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1493-# Filesort: No Disk_filesort: No Merge_passes: 0
1494-# No InnoDB statistics available for this query
1495-SELECT * FROM foo;
1496-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1497-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1498-# Filesort: No Disk_filesort: No Merge_passes: 0
1499-# No InnoDB statistics available for this query
1500-SELECT * FROM foo;
1501-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1502-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1503-# Filesort: No Disk_filesort: No Merge_passes: 0
1504-# No InnoDB statistics available for this query
1505-SELECT * FROM foo;
1506-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1507-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1508-# Filesort: No Disk_filesort: No Merge_passes: 0
1509-# No InnoDB statistics available for this query
1510-SELECT * FROM foo;
1511-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1512-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1513-# Filesort: No Disk_filesort: No Merge_passes: 0
1514-# No InnoDB statistics available for this query
1515-SELECT * FROM foo;
1516-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1517-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1518-# Filesort: No Disk_filesort: No Merge_passes: 0
1519-# No InnoDB statistics available for this query
1520-SELECT * FROM foo;
1521-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1522-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1523-# Filesort: No Disk_filesort: No Merge_passes: 0
1524-# No InnoDB statistics available for this query
1525-SELECT * FROM foo;
1526-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1527-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1528-# Filesort: No Disk_filesort: No Merge_passes: 0
1529-# No InnoDB statistics available for this query
1530-SELECT * FROM foo;
1531-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1532-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1533-# Filesort: No Disk_filesort: No Merge_passes: 0
1534-# No InnoDB statistics available for this query
1535-SELECT * FROM foo;
1536-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1537-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1538-# Filesort: No Disk_filesort: No Merge_passes: 0
1539-# No InnoDB statistics available for this query
1540-SELECT * FROM foo;
1541-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1542-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1543-# Filesort: No Disk_filesort: No Merge_passes: 0
1544-# No InnoDB statistics available for this query
1545-SELECT * FROM foo;
1546-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1547-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1548-# Filesort: No Disk_filesort: No Merge_passes: 0
1549-# No InnoDB statistics available for this query
1550-SELECT * FROM foo;
1551-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1552-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1553-# Filesort: No Disk_filesort: No Merge_passes: 0
1554-# No InnoDB statistics available for this query
1555-SELECT * FROM foo;
1556-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1557-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1558-# Filesort: No Disk_filesort: No Merge_passes: 0
1559-# No InnoDB statistics available for this query
1560-SELECT * FROM foo;
1561-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1562-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1563-# Filesort: No Disk_filesort: No Merge_passes: 0
1564-# No InnoDB statistics available for this query
1565-SELECT * FROM foo;
1566-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1567-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1568-# Filesort: No Disk_filesort: No Merge_passes: 0
1569-# No InnoDB statistics available for this query
1570-SELECT * FROM foo;
1571-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1572-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1573-# Filesort: No Disk_filesort: No Merge_passes: 0
1574-# No InnoDB statistics available for this query
1575-SELECT * FROM foo;
1576-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1577-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1578-# Filesort: No Disk_filesort: No Merge_passes: 0
1579-# No InnoDB statistics available for this query
1580-SELECT * FROM foo;
1581-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1582-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1583-# Filesort: No Disk_filesort: No Merge_passes: 0
1584-# No InnoDB statistics available for this query
1585-SELECT * FROM foo;
1586-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1587-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1588-# Filesort: No Disk_filesort: No Merge_passes: 0
1589-# No InnoDB statistics available for this query
1590-SELECT * FROM foo;
1591-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1592-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1593-# Filesort: No Disk_filesort: No Merge_passes: 0
1594-# No InnoDB statistics available for this query
1595-SELECT * FROM foo;
1596-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1597-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1598-# Filesort: No Disk_filesort: No Merge_passes: 0
1599-# No InnoDB statistics available for this query
1600-SELECT * FROM foo;
1601-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1602-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1603-# Filesort: No Disk_filesort: No Merge_passes: 0
1604-# No InnoDB statistics available for this query
1605-SELECT * FROM foo;
1606-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1607-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1608-# Filesort: No Disk_filesort: No Merge_passes: 0
1609-# No InnoDB statistics available for this query
1610-SELECT * FROM foo;
1611-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1612-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1613-# Filesort: No Disk_filesort: No Merge_passes: 0
1614-# No InnoDB statistics available for this query
1615-SELECT * FROM foo;
1616-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1617-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1618-# Filesort: No Disk_filesort: No Merge_passes: 0
1619-# No InnoDB statistics available for this query
1620-SELECT * FROM foo;
1621-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1622-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1623-# Filesort: No Disk_filesort: No Merge_passes: 0
1624-# No InnoDB statistics available for this query
1625-SELECT * FROM foo;
1626-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1627-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1628-# Filesort: No Disk_filesort: No Merge_passes: 0
1629-# No InnoDB statistics available for this query
1630-SELECT * FROM foo;
1631-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1632-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1633-# Filesort: No Disk_filesort: No Merge_passes: 0
1634-# No InnoDB statistics available for this query
1635-SELECT * FROM foo;
1636-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1637-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1638-# Filesort: No Disk_filesort: No Merge_passes: 0
1639-# No InnoDB statistics available for this query
1640-SELECT * FROM foo;
1641-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1642-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1643-# Filesort: No Disk_filesort: No Merge_passes: 0
1644-# No InnoDB statistics available for this query
1645-SELECT * FROM foo;
1646-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1647-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1648-# Filesort: No Disk_filesort: No Merge_passes: 0
1649-# No InnoDB statistics available for this query
1650-SELECT * FROM foo;
1651-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1652-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1653-# Filesort: No Disk_filesort: No Merge_passes: 0
1654-# No InnoDB statistics available for this query
1655-SELECT * FROM foo;
1656-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1657-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1658-# Filesort: No Disk_filesort: No Merge_passes: 0
1659-# No InnoDB statistics available for this query
1660-SELECT * FROM foo;
1661-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1662-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1663-# Filesort: No Disk_filesort: No Merge_passes: 0
1664-# No InnoDB statistics available for this query
1665-SELECT * FROM foo;
1666-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1667-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1668-# Filesort: No Disk_filesort: No Merge_passes: 0
1669-# No InnoDB statistics available for this query
1670-SELECT * FROM foo;
1671-# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1672-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
1673-# Filesort: No Disk_filesort: No Merge_passes: 0
1674+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1675+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1676+# No InnoDB statistics available for this query
1677+SELECT * FROM foo;
1678+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1679+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1680+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1681+# No InnoDB statistics available for this query
1682+SELECT * FROM foo;
1683+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1684+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1685+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1686+# No InnoDB statistics available for this query
1687+SELECT * FROM foo;
1688+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1689+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1690+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1691+# No InnoDB statistics available for this query
1692+SELECT * FROM foo;
1693+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1694+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1695+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1696+# No InnoDB statistics available for this query
1697+SELECT * FROM foo;
1698+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1699+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1700+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1701+# No InnoDB statistics available for this query
1702+SELECT * FROM foo;
1703+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1704+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1705+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1706+# No InnoDB statistics available for this query
1707+SELECT * FROM foo;
1708+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1709+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1710+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1711+# No InnoDB statistics available for this query
1712+SELECT * FROM foo;
1713+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1714+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1715+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1716+# No InnoDB statistics available for this query
1717+SELECT * FROM foo;
1718+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1719+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1720+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1721+# No InnoDB statistics available for this query
1722+SELECT * FROM foo;
1723+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1724+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1725+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1726+# No InnoDB statistics available for this query
1727+SELECT * FROM foo;
1728+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1729+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1730+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1731+# No InnoDB statistics available for this query
1732+SELECT * FROM foo;
1733+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1734+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1735+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1736+# No InnoDB statistics available for this query
1737+SELECT * FROM foo;
1738+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1739+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1740+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1741+# No InnoDB statistics available for this query
1742+SELECT * FROM foo;
1743+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1744+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1745+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1746+# No InnoDB statistics available for this query
1747+SELECT * FROM foo;
1748+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1749+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1750+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1751+# No InnoDB statistics available for this query
1752+SELECT * FROM foo;
1753+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1754+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1755+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1756+# No InnoDB statistics available for this query
1757+SELECT * FROM foo;
1758+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1759+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1760+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1761+# No InnoDB statistics available for this query
1762+SELECT * FROM foo;
1763+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1764+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1765+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1766+# No InnoDB statistics available for this query
1767+SELECT * FROM foo;
1768+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1769+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1770+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1771+# No InnoDB statistics available for this query
1772+SELECT * FROM foo;
1773+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1774+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1775+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1776+# No InnoDB statistics available for this query
1777+SELECT * FROM foo;
1778+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1779+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1780+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1781+# No InnoDB statistics available for this query
1782+SELECT * FROM foo;
1783+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1784+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1785+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1786+# No InnoDB statistics available for this query
1787+SELECT * FROM foo;
1788+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1789+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1790+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1791+# No InnoDB statistics available for this query
1792+SELECT * FROM foo;
1793+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1794+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1795+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1796+# No InnoDB statistics available for this query
1797+SELECT * FROM foo;
1798+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1799+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1800+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1801+# No InnoDB statistics available for this query
1802+SELECT * FROM foo;
1803+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1804+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1805+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1806+# No InnoDB statistics available for this query
1807+SELECT * FROM foo;
1808+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1809+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1810+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1811+# No InnoDB statistics available for this query
1812+SELECT * FROM foo;
1813+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1814+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1815+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1816+# No InnoDB statistics available for this query
1817+SELECT * FROM foo;
1818+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1819+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1820+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1821+# No InnoDB statistics available for this query
1822+SELECT * FROM foo;
1823+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1824+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1825+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1826+# No InnoDB statistics available for this query
1827+SELECT * FROM foo;
1828+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1829+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1830+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1831+# No InnoDB statistics available for this query
1832+SELECT * FROM foo;
1833+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1834+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1835+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1836+# No InnoDB statistics available for this query
1837+SELECT * FROM foo;
1838+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1839+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1840+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1841+# No InnoDB statistics available for this query
1842+SELECT * FROM foo;
1843+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1844+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1845+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1846+# No InnoDB statistics available for this query
1847+SELECT * FROM foo;
1848+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1849+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1850+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1851+# No InnoDB statistics available for this query
1852+SELECT * FROM foo;
1853+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1854+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1855+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1856+# No InnoDB statistics available for this query
1857+SELECT * FROM foo;
1858+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1859+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1860+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1861+# No InnoDB statistics available for this query
1862+SELECT * FROM foo;
1863+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1864+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1865+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1866+# No InnoDB statistics available for this query
1867+SELECT * FROM foo;
1868+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1869+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1870+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1871+# No InnoDB statistics available for this query
1872+SELECT * FROM foo;
1873+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1874+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1875+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1876+# No InnoDB statistics available for this query
1877+SELECT * FROM foo;
1878+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1879+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1880+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1881+# No InnoDB statistics available for this query
1882+SELECT * FROM foo;
1883+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1884+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1885+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1886+# No InnoDB statistics available for this query
1887+SELECT * FROM foo;
1888+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1889+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1890+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1891+# No InnoDB statistics available for this query
1892+SELECT * FROM foo;
1893+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1894+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1895+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1896+# No InnoDB statistics available for this query
1897+SELECT * FROM foo;
1898+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1899+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1900+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1901+# No InnoDB statistics available for this query
1902+SELECT * FROM foo;
1903+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1904+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1905+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1906+# No InnoDB statistics available for this query
1907+SELECT * FROM foo;
1908+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1909+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1910+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1911+# No InnoDB statistics available for this query
1912+SELECT * FROM foo;
1913+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1914+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1915+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1916+# No InnoDB statistics available for this query
1917+SELECT * FROM foo;
1918+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1919+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1920+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1921+# No InnoDB statistics available for this query
1922+SELECT * FROM foo;
1923+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1924+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1925+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1926+# No InnoDB statistics available for this query
1927+SELECT * FROM foo;
1928+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1929+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1930+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1931+# No InnoDB statistics available for this query
1932+SELECT * FROM foo;
1933+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1934+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1935+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1936+# No InnoDB statistics available for this query
1937+SELECT * FROM foo;
1938+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1939+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1940+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1941+# No InnoDB statistics available for this query
1942+SELECT * FROM foo;
1943+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1944+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1945+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1946+# No InnoDB statistics available for this query
1947+SELECT * FROM foo;
1948+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1949+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1950+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1951+# No InnoDB statistics available for this query
1952+SELECT * FROM foo;
1953+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1954+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1955+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1956+# No InnoDB statistics available for this query
1957+SELECT * FROM foo;
1958+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1959+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1960+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1961+# No InnoDB statistics available for this query
1962+SELECT * FROM foo;
1963+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1964+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1965+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1966+# No InnoDB statistics available for this query
1967+SELECT * FROM foo;
1968+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1969+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1970+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1971+# No InnoDB statistics available for this query
1972+SELECT * FROM foo;
1973+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1974+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1975+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1976+# No InnoDB statistics available for this query
1977+SELECT * FROM foo;
1978+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1979+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1980+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1981+# No InnoDB statistics available for this query
1982+SELECT * FROM foo;
1983+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1984+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1985+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1986+# No InnoDB statistics available for this query
1987+SELECT * FROM foo;
1988+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1989+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1990+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1991+# No InnoDB statistics available for this query
1992+SELECT * FROM foo;
1993+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1994+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
1995+# Filesort: No Filesort_on_disk: No Merge_passes: 0
1996+# No InnoDB statistics available for this query
1997+SELECT * FROM foo;
1998+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
1999+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2000+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2001+# No InnoDB statistics available for this query
2002+SELECT * FROM foo;
2003+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2004+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2005+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2006+# No InnoDB statistics available for this query
2007+SELECT * FROM foo;
2008+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2009+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2010+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2011+# No InnoDB statistics available for this query
2012+SELECT * FROM foo;
2013+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2014+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2015+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2016+# No InnoDB statistics available for this query
2017+SELECT * FROM foo;
2018+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2019+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2020+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2021+# No InnoDB statistics available for this query
2022+SELECT * FROM foo;
2023+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2024+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2025+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2026+# No InnoDB statistics available for this query
2027+SELECT * FROM foo;
2028+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2029+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2030+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2031+# No InnoDB statistics available for this query
2032+SELECT * FROM foo;
2033+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2034+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2035+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2036+# No InnoDB statistics available for this query
2037+SELECT * FROM foo;
2038+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2039+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2040+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2041+# No InnoDB statistics available for this query
2042+SELECT * FROM foo;
2043+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2044+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2045+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2046+# No InnoDB statistics available for this query
2047+SELECT * FROM foo;
2048+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2049+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2050+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2051+# No InnoDB statistics available for this query
2052+SELECT * FROM foo;
2053+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2054+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2055+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2056+# No InnoDB statistics available for this query
2057+SELECT * FROM foo;
2058+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2059+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2060+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2061+# No InnoDB statistics available for this query
2062+SELECT * FROM foo;
2063+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2064+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2065+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2066+# No InnoDB statistics available for this query
2067+SELECT * FROM foo;
2068+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2069+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2070+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2071+# No InnoDB statistics available for this query
2072+SELECT * FROM foo;
2073+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2074+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2075+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2076+# No InnoDB statistics available for this query
2077+SELECT * FROM foo;
2078+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2079+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2080+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2081+# No InnoDB statistics available for this query
2082+SELECT * FROM foo;
2083+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2084+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2085+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2086+# No InnoDB statistics available for this query
2087+SELECT * FROM foo;
2088+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2089+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2090+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2091+# No InnoDB statistics available for this query
2092+SELECT * FROM foo;
2093+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2094+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2095+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2096+# No InnoDB statistics available for this query
2097+SELECT * FROM foo;
2098+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2099+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2100+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2101+# No InnoDB statistics available for this query
2102+SELECT * FROM foo;
2103+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2104+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2105+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2106+# No InnoDB statistics available for this query
2107+SELECT * FROM foo;
2108+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2109+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2110+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2111+# No InnoDB statistics available for this query
2112+SELECT * FROM foo;
2113+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2114+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2115+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2116+# No InnoDB statistics available for this query
2117+SELECT * FROM foo;
2118+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2119+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2120+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2121+# No InnoDB statistics available for this query
2122+SELECT * FROM foo;
2123+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2124+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2125+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2126+# No InnoDB statistics available for this query
2127+SELECT * FROM foo;
2128+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2129+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2130+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2131+# No InnoDB statistics available for this query
2132+SELECT * FROM foo;
2133+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2134+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2135+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2136+# No InnoDB statistics available for this query
2137+SELECT * FROM foo;
2138+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2139+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2140+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2141+# No InnoDB statistics available for this query
2142+SELECT * FROM foo;
2143+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2144+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2145+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2146+# No InnoDB statistics available for this query
2147+SELECT * FROM foo;
2148+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2149+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2150+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2151+# No InnoDB statistics available for this query
2152+SELECT * FROM foo;
2153+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2154+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2155+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2156+# No InnoDB statistics available for this query
2157+SELECT * FROM foo;
2158+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2159+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2160+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2161+# No InnoDB statistics available for this query
2162+SELECT * FROM foo;
2163+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2164+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2165+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2166+# No InnoDB statistics available for this query
2167+SELECT * FROM foo;
2168+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2169+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2170+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2171+# No InnoDB statistics available for this query
2172+SELECT * FROM foo;
2173+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2174+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2175+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2176+# No InnoDB statistics available for this query
2177+SELECT * FROM foo;
2178+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2179+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2180+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2181+# No InnoDB statistics available for this query
2182+SELECT * FROM foo;
2183+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2184+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2185+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2186+# No InnoDB statistics available for this query
2187+SELECT * FROM foo;
2188+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2189+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2190+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2191+# No InnoDB statistics available for this query
2192+SELECT * FROM foo;
2193+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2194+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2195+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2196+# No InnoDB statistics available for this query
2197+SELECT * FROM foo;
2198+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2199+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2200+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2201+# No InnoDB statistics available for this query
2202+SELECT * FROM foo;
2203+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2204+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2205+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2206+# No InnoDB statistics available for this query
2207+SELECT * FROM foo;
2208+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2209+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2210+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2211+# No InnoDB statistics available for this query
2212+SELECT * FROM foo;
2213+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2214+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2215+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2216+# No InnoDB statistics available for this query
2217+SELECT * FROM foo;
2218+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2219+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2220+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2221+# No InnoDB statistics available for this query
2222+SELECT * FROM foo;
2223+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2224+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2225+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2226+# No InnoDB statistics available for this query
2227+SELECT * FROM foo;
2228+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2229+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2230+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2231+# No InnoDB statistics available for this query
2232+SELECT * FROM foo;
2233+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2234+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2235+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2236+# No InnoDB statistics available for this query
2237+SELECT * FROM foo;
2238+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2239+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2240+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2241+# No InnoDB statistics available for this query
2242+SELECT * FROM foo;
2243+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2244+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2245+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2246+# No InnoDB statistics available for this query
2247+SELECT * FROM foo;
2248+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2249+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2250+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2251+# No InnoDB statistics available for this query
2252+SELECT * FROM foo;
2253+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2254+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2255+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2256+# No InnoDB statistics available for this query
2257+SELECT * FROM foo;
2258+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2259+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2260+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2261+# No InnoDB statistics available for this query
2262+SELECT * FROM foo;
2263+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2264+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2265+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2266+# No InnoDB statistics available for this query
2267+SELECT * FROM foo;
2268+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2269+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2270+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2271+# No InnoDB statistics available for this query
2272+SELECT * FROM foo;
2273+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2274+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2275+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2276+# No InnoDB statistics available for this query
2277+SELECT * FROM foo;
2278+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2279+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2280+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2281+# No InnoDB statistics available for this query
2282+SELECT * FROM foo;
2283+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2284+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2285+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2286+# No InnoDB statistics available for this query
2287+SELECT * FROM foo;
2288+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2289+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2290+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2291+# No InnoDB statistics available for this query
2292+SELECT * FROM foo;
2293+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2294+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2295+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2296+# No InnoDB statistics available for this query
2297+SELECT * FROM foo;
2298+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2299+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2300+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2301+# No InnoDB statistics available for this query
2302+SELECT * FROM foo;
2303+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2304+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2305+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2306+# No InnoDB statistics available for this query
2307+SELECT * FROM foo;
2308+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2309+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2310+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2311+# No InnoDB statistics available for this query
2312+SELECT * FROM foo;
2313+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2314+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2315+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2316+# No InnoDB statistics available for this query
2317+SELECT * FROM foo;
2318+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2319+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2320+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2321+# No InnoDB statistics available for this query
2322+SELECT * FROM foo;
2323+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2324+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2325+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2326+# No InnoDB statistics available for this query
2327+SELECT * FROM foo;
2328+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2329+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2330+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2331+# No InnoDB statistics available for this query
2332+SELECT * FROM foo;
2333+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2334+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2335+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2336+# No InnoDB statistics available for this query
2337+SELECT * FROM foo;
2338+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2339+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2340+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2341+# No InnoDB statistics available for this query
2342+SELECT * FROM foo;
2343+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2344+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2345+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2346+# No InnoDB statistics available for this query
2347+SELECT * FROM foo;
2348+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2349+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2350+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2351+# No InnoDB statistics available for this query
2352+SELECT * FROM foo;
2353+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2354+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2355+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2356+# No InnoDB statistics available for this query
2357+SELECT * FROM foo;
2358+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2359+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2360+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2361+# No InnoDB statistics available for this query
2362+SELECT * FROM foo;
2363+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2364+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2365+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2366+# No InnoDB statistics available for this query
2367+SELECT * FROM foo;
2368+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2369+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2370+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2371+# No InnoDB statistics available for this query
2372+SELECT * FROM foo;
2373+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2374+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2375+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2376+# No InnoDB statistics available for this query
2377+SELECT * FROM foo;
2378+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2379+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2380+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2381+# No InnoDB statistics available for this query
2382+SELECT * FROM foo;
2383+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2384+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2385+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2386+# No InnoDB statistics available for this query
2387+SELECT * FROM foo;
2388+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2389+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2390+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2391+# No InnoDB statistics available for this query
2392+SELECT * FROM foo;
2393+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2394+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2395+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2396+# No InnoDB statistics available for this query
2397+SELECT * FROM foo;
2398+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2399+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2400+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2401+# No InnoDB statistics available for this query
2402+SELECT * FROM foo;
2403+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2404+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2405+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2406+# No InnoDB statistics available for this query
2407+SELECT * FROM foo;
2408+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2409+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2410+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2411+# No InnoDB statistics available for this query
2412+SELECT * FROM foo;
2413+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2414+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2415+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2416+# No InnoDB statistics available for this query
2417+SELECT * FROM foo;
2418+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2419+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2420+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2421+# No InnoDB statistics available for this query
2422+SELECT * FROM foo;
2423+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2424+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2425+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2426+# No InnoDB statistics available for this query
2427+SELECT * FROM foo;
2428+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2429+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2430+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2431+# No InnoDB statistics available for this query
2432+SELECT * FROM foo;
2433+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2434+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2435+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2436+# No InnoDB statistics available for this query
2437+SELECT * FROM foo;
2438+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2439+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2440+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2441+# No InnoDB statistics available for this query
2442+SELECT * FROM foo;
2443+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2444+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2445+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2446+# No InnoDB statistics available for this query
2447+SELECT * FROM foo;
2448+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2449+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2450+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2451+# No InnoDB statistics available for this query
2452+SELECT * FROM foo;
2453+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2454+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2455+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2456+# No InnoDB statistics available for this query
2457+SELECT * FROM foo;
2458+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2459+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2460+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2461+# No InnoDB statistics available for this query
2462+SELECT * FROM foo;
2463+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2464+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2465+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2466+# No InnoDB statistics available for this query
2467+SELECT * FROM foo;
2468+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2469+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2470+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2471+# No InnoDB statistics available for this query
2472+SELECT * FROM foo;
2473+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2474+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2475+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2476+# No InnoDB statistics available for this query
2477+SELECT * FROM foo;
2478+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2479+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2480+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2481+# No InnoDB statistics available for this query
2482+SELECT * FROM foo;
2483+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2484+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2485+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2486+# No InnoDB statistics available for this query
2487+SELECT * FROM foo;
2488+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2489+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2490+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2491+# No InnoDB statistics available for this query
2492+SELECT * FROM foo;
2493+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2494+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2495+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2496+# No InnoDB statistics available for this query
2497+SELECT * FROM foo;
2498+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2499+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2500+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2501+# No InnoDB statistics available for this query
2502+SELECT * FROM foo;
2503+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2504+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2505+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2506+# No InnoDB statistics available for this query
2507+SELECT * FROM foo;
2508+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2509+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2510+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2511+# No InnoDB statistics available for this query
2512+SELECT * FROM foo;
2513+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2514+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2515+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2516+# No InnoDB statistics available for this query
2517+SELECT * FROM foo;
2518+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2519+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2520+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2521+# No InnoDB statistics available for this query
2522+SELECT * FROM foo;
2523+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2524+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2525+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2526+# No InnoDB statistics available for this query
2527+SELECT * FROM foo;
2528+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2529+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2530+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2531+# No InnoDB statistics available for this query
2532+SELECT * FROM foo;
2533+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2534+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2535+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2536+# No InnoDB statistics available for this query
2537+SELECT * FROM foo;
2538+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2539+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2540+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2541+# No InnoDB statistics available for this query
2542+SELECT * FROM foo;
2543+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2544+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2545+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2546+# No InnoDB statistics available for this query
2547+SELECT * FROM foo;
2548+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2549+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2550+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2551+# No InnoDB statistics available for this query
2552+SELECT * FROM foo;
2553+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2554+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2555+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2556+# No InnoDB statistics available for this query
2557+SELECT * FROM foo;
2558+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2559+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2560+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2561+# No InnoDB statistics available for this query
2562+SELECT * FROM foo;
2563+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2564+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2565+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2566+# No InnoDB statistics available for this query
2567+SELECT * FROM foo;
2568+# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2569+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2570+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2571 # InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
2572 # InnoDB_rec_lock_wait: 1.000002 InnoDB_queue_wait: 0.200005
2573 # InnoDB_pages_distinct: 24
2574 SELECT * FROM bar;
2575 # Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
2576-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
2577-# Filesort: No Disk_filesort: No Merge_passes: 0
2578+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2579+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2580 # No InnoDB statistics available for this query
2581 SELECT * FROM foo;
2582
2583=== modified file 't/lib/samples/slowlogs/slow032-rewritten.txt'
2584--- t/lib/samples/slowlogs/slow032-rewritten.txt 2011-06-24 17:22:06 +0000
2585+++ t/lib/samples/slowlogs/slow032-rewritten.txt 2012-05-31 14:13:25 +0000
2586@@ -1,8 +1,8 @@
2587 # User@Host: [SQL_SLAVE][[SQL_SLAVE]] @ []
2588 # Thread_id: 10
2589 # Query_time: 0.000512 Lock_time: 0.000077 Rows_sent: 0 Rows_examined: 0
2590-# QC_Hit: No Full_scan: No Full_join: Yes Tmp_table: No Disk_tmp_table: No
2591-# Filesort: No Disk_filesort: No Merge_passes: 0
2592+# QC_Hit: No Full_scan: No Full_join: Yes Tmp_table: No Tmp_table_on_disk: No
2593+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2594 # InnoDB_IO_r_ops: 1 InnoDB_IO_r_bytes: 2 InnoDB_IO_r_wait: 3.000003
2595 # InnoDB_rec_lock_wait: 0.400004 InnoDB_queue_wait: 0.000005
2596 # InnoDB_pages_distinct: 24
2597
2598=== modified file 't/lib/samples/slowlogs/slow032.txt'
2599--- t/lib/samples/slowlogs/slow032.txt 2011-06-24 17:22:06 +0000
2600+++ t/lib/samples/slowlogs/slow032.txt 2012-05-31 14:13:25 +0000
2601@@ -1,8 +1,8 @@
2602 # User@Host: [SQL_SLAVE] @ []
2603 # Thread_id: 10
2604 # Query_time: 0.000512 Lock_time: 0.000077 Rows_sent: 0 Rows_examined: 0
2605-# QC_Hit: No Full_scan: No Full_join: Yes Tmp_table: No Disk_tmp_table: No
2606-# Filesort: No Disk_filesort: No Merge_passes: 0
2607+# QC_Hit: No Full_scan: No Full_join: Yes Tmp_table: No Tmp_table_on_disk: No
2608+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2609 # InnoDB_IO_r_ops: 1 InnoDB_IO_r_bytes: 2 InnoDB_IO_r_wait: 3.000003
2610 # InnoDB_rec_lock_wait: 0.400004 InnoDB_queue_wait: 0.000005
2611 # InnoDB_pages_distinct: 24
2612
2613=== modified file 't/lib/samples/slowlogs/slow034.txt'
2614--- t/lib/samples/slowlogs/slow034.txt 2011-06-24 17:22:06 +0000
2615+++ t/lib/samples/slowlogs/slow034.txt 2012-05-31 14:13:25 +0000
2616@@ -1,52 +1,52 @@
2617 # Time: 090805 11:00:27
2618 # Thread_id: 1 Schema: db1
2619 # Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 9 Rows_examined: 51
2620-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
2621-# Filesort: No Disk_filesort: No Merge_passes: 0
2622+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2623+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2624 # No InnoDB statistics available for this query
2625 SELECT * FROM foo;
2626 # Query_time: 1.726052 Lock_time: 0.010093 Rows_sent: 1 Rows_examined: 1
2627-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
2628-# Filesort: No Disk_filesort: No Merge_passes: 0
2629+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
2630+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2631 # No InnoDB statistics available for this query
2632 SELECT id FROM tbl WHERE id = 1;
2633 # Query_time: 9.000052 Lock_time: 0.000001 Rows_sent: 900 Rows_examined: 10000
2634-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Disk_tmp_table: No
2635-# Filesort: No Disk_filesort: Yes Merge_passes: 1
2636+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Tmp_table_on_disk: No
2637+# Filesort: No Filesort_on_disk: Yes Merge_passes: 1
2638 # No InnoDB statistics available for this query
2639 SELECT COUNT(*) FROM blah WHERE col > 2;
2640 # Time: 090805 12:00:27
2641 # Thread_id: 2 Schema: db1
2642 # Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 9 Rows_examined: 51
2643-# QC_Hit: Yes Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
2644-# Filesort: No Disk_filesort: No Merge_passes: 0
2645+# QC_Hit: Yes Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2646+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2647 # No InnoDB statistics available for this query
2648 SELECT * FROM foo;
2649 # Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 0 Rows_examined: 0
2650-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
2651-# Filesort: No Disk_filesort: No Merge_passes: 0
2652+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2653+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2654 # No InnoDB statistics available for this query
2655 use db2;
2656 INSERT INTO tbl VALUES ('a', 'b');
2657 # Query_time: 0.000052 Lock_time: 0.010091 Rows_sent: 0 Rows_examined: 0
2658-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
2659-# Filesort: No Disk_filesort: No Merge_passes: 0
2660+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2661+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2662 # No InnoDB statistics available for this query
2663 INSERT INTO tbl VALUES ('c', 'd');
2664 # Time: 090805 13:00:27
2665 # Thread_id: 3 Schema: db3
2666 # Query_time: 1349.000052 Lock_time: 1349.000091 Rows_sent: 0 Rows_examined: 1928472
2667-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Disk_tmp_table: Yes
2668-# Filesort: Yes Disk_filesort: Yes Merge_passes: 0
2669+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Tmp_table_on_disk: Yes
2670+# Filesort: Yes Filesort_on_disk: Yes Merge_passes: 0
2671 # No InnoDB statistics available for this query
2672 DELETE FROM forest WHERE animal = 'dead';
2673 # Query_time: 0.926052 Lock_time: 0.097091 Rows_sent: 8 Rows_examined: 50
2674-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
2675-# Filesort: No Disk_filesort: No Merge_passes: 0
2676+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2677+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2678 # No InnoDB statistics available for this query
2679 SELECT * FROM foo;
2680 # Query_time: 0.526052 Lock_time: 0.037091 Rows_sent: 7 Rows_examined:40
2681-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
2682-# Filesort: No Disk_filesort: No Merge_passes: 0
2683+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2684+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2685 # No InnoDB statistics available for this query
2686 SELECT * FROM foo;
2687
2688=== modified file 't/lib/samples/slowlogs/slow035.txt'
2689--- t/lib/samples/slowlogs/slow035.txt 2011-06-24 17:22:06 +0000
2690+++ t/lib/samples/slowlogs/slow035.txt 2012-05-31 14:13:25 +0000
2691@@ -2,8 +2,8 @@
2692 # User@Host: [SQL_SLAVE] @ []
2693 # Thread_id: 0
2694 # Query_time: 0.000000 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
2695-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
2696-# Filesort: No Disk_filesort: No Merge_passes: 0
2697+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
2698+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2699 # InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
2700 # InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
2701 # InnoDB_pages_distinct: 0
2702
2703=== modified file 't/pt-log-player/samples/log001.txt'
2704--- t/pt-log-player/samples/log001.txt 2011-06-24 22:02:05 +0000
2705+++ t/pt-log-player/samples/log001.txt 2012-05-31 14:13:25 +0000
2706@@ -1,58 +1,58 @@
2707 # Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
2708 # Thread_id: 1 Schema: mk_log_player_1
2709 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 10 Rows_examined: 10
2710-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
2711-# Filesort: No Disk_filesort: No Merge_passes: 0
2712+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
2713+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2714 # No InnoDB statistics available for this query
2715 SELECT a FROM tbl1;
2716 # Time: 071218 11:48:57 # User@Host: [SQL_SLAVE] @ []
2717 # Thread_id: 1 Schema: mk_log_player_1
2718 # Query_time: 0.000002 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
2719-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
2720-# Filesort: No Disk_filesort: No Merge_passes: 0
2721+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
2722+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2723 # No InnoDB statistics available for this query
2724 # administrator command: ping;
2725 # Time: 071218 11:48:57 # User@Host: [SQL_SLAVE] @ []
2726 # Thread_id: 2
2727 # Query_time: 0.010012 Lock_time: 0.000022 Rows_sent: 3 Rows_examined: 3
2728-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
2729-# Filesort: No Disk_filesort: No Merge_passes: 0
2730+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
2731+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2732 # No InnoDB statistics available for this query
2733 use mk_log_player_2;
2734 SELECT a FROM tbl2;
2735 # Time: 071218 11:49:05 # User@Host: [SQL_SLAVE] @ []
2736 # Thread_id: 1 Schema: mk_log_player_2
2737 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
2738-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
2739-# Filesort: No Disk_filesort: No Merge_passes: 0
2740+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
2741+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2742 # No InnoDB statistics available for this query
2743 SELECT a FROM mk_log_player_2.tbl2;
2744 # Time: 071218 11:49:07 # User@Host: [SQL_SLAVE] @ []
2745 # Thread_id: 2
2746 # Query_time: 0.000112 Lock_time: 0.000230 Rows_sent: 0 Rows_examined: 0
2747-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
2748-# Filesort: No Disk_filesort: No Merge_passes: 0
2749+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
2750+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2751 # No InnoDB statistics available for this query
2752 DELETE FROM mk_log_player_2.tbl2 WHERE a IS NULL;
2753 # Time: 071218 11:49:30 # User@Host: [SQL_SLAVE] @ []
2754 # Thread_id: 3 Schema: mk_log_player_1
2755 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 10
2756-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
2757-# Filesort: No Disk_filesort: No Merge_passes: 0
2758+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
2759+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2760 # No InnoDB statistics available for this query
2761 use mk_log_player_1;
2762 SELECT a FROM tbl1 WHERE a = 3;
2763 # Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
2764 # Thread_id: 1 Schema: mk_log_player_1
2765 # Query_time: 0.000012 Lock_time: 0.021000 Rows_sent: 0 Rows_examined: 0
2766-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
2767-# Filesort: No Disk_filesort: No Merge_passes: 0
2768+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
2769+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2770 # No InnoDB statistics available for this query
2771 UPDATE mk_log_player_1.tbl1 SET a = 100 WHERE a = 1;
2772 # Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
2773 # Thread_id: 4 Schema: mk_log_player_1
2774 # Query_time: 0.000012 Lock_time: 0.500000 Rows_sent: 0 Rows_examined: 0
2775-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
2776-# Filesort: No Disk_filesort: No Merge_passes: 0
2777+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
2778+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2779 # No InnoDB statistics available for this query
2780 INSERT INTO mk_log_player_1.tbl1 VALUES (555);
2781
2782=== modified file 't/pt-query-digest/read_timeout.t'
2783--- t/pt-query-digest/read_timeout.t 2011-07-12 22:56:55 +0000
2784+++ t/pt-query-digest/read_timeout.t 2012-05-31 14:13:25 +0000
2785@@ -37,7 +37,7 @@
2786
2787 ok(
2788 $waited >= 2 && $waited <= 3,
2789- "--read-timeout waited $waited seconds reading STDIN"
2790+ "--read-timeout 2 waited $waited seconds reading STDIN"
2791 );
2792
2793 diag(`rm -rf /tmp/mqd.pid`);
2794
2795=== modified file 't/pt-query-digest/review.t'
2796--- t/pt-query-digest/review.t 2011-07-12 22:56:55 +0000
2797+++ t/pt-query-digest/review.t 2012-05-31 14:13:25 +0000
2798@@ -250,10 +250,10 @@
2799 sample => "UPDATE foo.bar
2800 SET biz = '91848182522'",
2801 checksum => '12831241509574346332',
2802- disk_filesort_cnt => '2',
2803- disk_filesort_sum => '0',
2804- disk_tmp_table_cnt => '2',
2805- disk_tmp_table_sum => '0',
2806+ filesort_on_disk_cnt => '2',
2807+ filesort_on_disk_sum => '0',
2808+ tmp_table_on_disk_cnt => '2',
2809+ tmp_table_on_disk_sum => '0',
2810 filesort_cnt => '2',
2811 filesort_sum => '0',
2812 full_join_cnt => '2',
2813
2814=== modified file 't/pt-query-digest/samples/save-results/slow002-limit-3.txt'
2815--- t/pt-query-digest/samples/save-results/slow002-limit-3.txt 2011-06-24 22:02:05 +0000
2816+++ t/pt-query-digest/samples/save-results/slow002-limit-3.txt 2012-05-31 14:13:25 +0000
2817@@ -1,6 +1,6 @@
2818-$VAR1 = {attribute_types => {Disk_filesort => 'bool',Disk_tmp_table => 'bool',Error_no => 'string',Filesort => 'bool',Full_join => 'bool',Full_scan => 'bool',InnoDB_IO_r_bytes => 'num',InnoDB_IO_r_ops => 'num',InnoDB_IO_r_wait => 'num',InnoDB_pages_distinct => 'num',InnoDB_queue_wait => 'num',InnoDB_rec_lock_wait => 'num',Killed => 'bool',Last_errno => 'string',Lock_time => 'num',Merge_passes => 'num',QC_Hit => 'bool',Query_time => 'num',Rows_examined => 'num',Rows_sent => 'num',Statement_id => 'string',Status_code => 'string',Thread_id => 'string',Tmp_table => 'bool',bytes => 'num',db => 'string',host => 'string',key_print => 'string',pos_in_log => 'num',ts => 'string',user => 'string',val => 'string'},groupby => 'fingerprint',results => {classes => {'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?' => {Disk_filesort => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Disk_tmp_table => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Filesort => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_join => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_scan => {cnt => 1,max => 1,min => 1,sum => 1,unq => {'1' => 1}},Lock_time => {all => {'93' => 1},cnt => 1,last => '0.000091',max => '0.000091',min => '0.000091',sum => '9.1e-05'},Merge_passes => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Query_time => {all => {'277' => 1},cnt => 1,last => '0.726052',max => '0.726052',min => '0.726052',sum => '0.726052'},Rows_examined => {all => {'510' => 1},cnt => 1,last => 62951,max => 62951,min => 62951,sum => 62951},Rows_sent => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},bytes => {all => {'383' => 1},cnt => 1,last => 129,max => 129,min => 129,sum => 129},db => {cnt => 1,max => 'db1',min => 'db1',unq => {db1 => 1}},host => {cnt => 1,max => '',min => '',unq => {'' => 1}},pos_in_log => {all => {'403' => 1},cnt => 1,last => 332,max => 332,min => 332,sum => 332},ts => {cnt => 1,max => '071218 11:48:27',min => '071218 11:48:27',unq => {'071218 11:48:27' => 1}},user => {cnt => 1,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 1}}},'update d?va?oncept?upload set va?oncept?id = ? where va?oncept?upload=?' => {Disk_filesort => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Disk_tmp_table => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Filesort => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_join => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_scan => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},InnoDB_IO_r_bytes => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},InnoDB_IO_r_ops => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},InnoDB_IO_r_wait => {all => {'0' => 1},cnt => 1,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},InnoDB_pages_distinct => {all => {'333' => 1},cnt => 1,last => 11,max => 11,min => 11,sum => 11},InnoDB_queue_wait => {all => {'0' => 1},cnt => 1,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},InnoDB_rec_lock_wait => {all => {'0' => 1},cnt => 1,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},Lock_time => {all => {'69' => 1},cnt => 1,last => '0.000028',max => '0.000028',min => '0.000028',sum => '2.8e-05'},Merge_passes => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Query_time => {all => {'214' => 1},cnt => 1,last => '0.033384',max => '0.033384',min => '0.033384',sum => '0.033384'},Rows_examined => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},Rows_sent => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},bytes => {all => {'379' => 1},cnt => 1,last => 103,max => 103,min => 103,sum => 103},db => {cnt => 1,max => 'db1',min => 'db1',unq => {db1 => 1}},host => {cnt => 1,max => '',min => '',unq => {'' => 1}},pos_in_log => {all => {'431' => 1},cnt => 1,last => 1316,max => 1316,min => 1316,sum => 1316},ts => {cnt => 1,max => '071218 11:48:27',min => '071218 11:48:27',unq => {'071218 11:48:27' => 1}},user => {cnt => 1,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 1}}},'update foo.bar set biz = ?' => {Disk_filesort => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},Disk_tmp_table => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},Filesort => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},Full_join => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},Full_scan => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},InnoDB_IO_r_bytes => {all => {'0' => 2},cnt => 2,last => 0,max => 0,min => 0,sum => 0},InnoDB_IO_r_ops => {all => {'0' => 2},cnt => 2,last => 0,max => 0,min => 0,sum => 0},InnoDB_IO_r_wait => {all => {'0' => 2},cnt => 2,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},InnoDB_pages_distinct => {all => {'343' => 2},cnt => 2,last => 18,max => 18,min => 18,sum => 36},InnoDB_queue_wait => {all => {'0' => 2},cnt => 2,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},InnoDB_rec_lock_wait => {all => {'0' => 2},cnt => 2,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},Lock_time => {all => {'68' => 2},cnt => 2,last => '0.000027',max => '0.000027',min => '0.000027',sum => '5.4e-05'},Merge_passes => {all => {'0' => 2},cnt => 2,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},Query_time => {all => {'129' => 2},cnt => 2,last => '0.000530',max => '0.000530',min => '0.000530',sum => '0.00106'},Rows_examined => {all => {'0' => 2},cnt => 2,last => 0,max => 0,min => 0,sum => 0},Rows_sent => {all => {'0' => 2},cnt => 2,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},bytes => {all => {'360' => 2},cnt => 2,last => 41,max => 41,min => 41,sum => 82},db => {cnt => 2,max => 'db1',min => 'db1',unq => {db1 => 2}},host => {cnt => 2,max => '',min => '',unq => {'' => 2}},pos_in_log => {all => {'443' => 1,'450' => 1},cnt => 2,last => 3332,max => 3332,min => 2363,sum => 5695},ts => {cnt => 2,max => '071218 11:48:27',min => '071218 11:48:27',unq => {'071218 11:48:27' => 2}},user => {cnt => 2,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 2}}}},globals => {Disk_filesort => {cnt => 8,max => 0,min => 0,sum => 0},Disk_tmp_table => {cnt => 8,max => 0,min => 0,sum => 0},Filesort => {cnt => 8,max => 0,min => 0,sum => 0},Full_join => {cnt => 8,max => 0,min => 0,sum => 0},Full_scan => {cnt => 8,max => 1,min => 0,sum => 1},InnoDB_IO_r_bytes => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},InnoDB_IO_r_ops => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},InnoDB_IO_r_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},InnoDB_pages_distinct => {all => {'333' => 1,'343' => 4,'349' => 1},cnt => 6,max => 24,min => 11,sum => 107},InnoDB_queue_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},InnoDB_rec_lock_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},Lock_time => {all => {'0' => 1,'68' => 4,'69' => 1,'90' => 1,'93' => 1},cnt => 8,max => '0.000091',min => '0.000000',sum => '0.000304'},Merge_passes => {all => {'0' => 8},cnt => 8,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 8,max => 0,min => 0,sum => 0},Query_time => {all => {'128' => 1,'129' => 4,'214' => 1,'277' => 1,'51' => 1},cnt => 8,max => '0.726052',min => '0.000012',sum => '0.76208'},Rows_examined => {all => {'0' => 7,'510' => 1},cnt => 8,max => 62951,min => 0,sum => 62951},Rows_sent => {all => {'0' => 8},cnt => 8,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 8,max => 0,min => 0,sum => 0},bytes => {all => {'317' => 1,'360' => 2,'367' => 1,'368' => 1,'370' => 1,'379' => 1,'383' => 1},cnt => 8,max => 129,min => 5,sum => 502},db => {cnt => 7,max => 'db1',min => 'db1'},host => {cnt => 8,max => '',min => ''},pos_in_log => {all => {'0' => 1,'403' => 1,'421' => 1,'431' => 1,'438' => 1,'443' => 1,'447' => 1,'450' => 1},cnt => 8,max => 3332,min => 0,sum => 12811},ts => {cnt => 8,max => '071218 11:48:27',min => '071218 11:48:27'},user => {cnt => 8,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]'}},samples => {'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?' => {Disk_filesort => 'No',Disk_tmp_table => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'Yes',Lock_time => '0.000091',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.726052',Rows_examined => '62951',Rows_sent => '0',Thread_id => '10',Tmp_table => 'No',arg => 'update db2.tuningdetail_21_265507 n
2819+$VAR1 = {attribute_types => {Filesort_on_disk => 'bool',Tmp_table_on_disk => 'bool',Error_no => 'string',Filesort => 'bool',Full_join => 'bool',Full_scan => 'bool',InnoDB_IO_r_bytes => 'num',InnoDB_IO_r_ops => 'num',InnoDB_IO_r_wait => 'num',InnoDB_pages_distinct => 'num',InnoDB_queue_wait => 'num',InnoDB_rec_lock_wait => 'num',Killed => 'bool',Last_errno => 'string',Lock_time => 'num',Merge_passes => 'num',QC_Hit => 'bool',Query_time => 'num',Rows_examined => 'num',Rows_sent => 'num',Statement_id => 'string',Status_code => 'string',Thread_id => 'string',Tmp_table => 'bool',bytes => 'num',db => 'string',host => 'string',key_print => 'string',pos_in_log => 'num',ts => 'string',user => 'string',val => 'string'},groupby => 'fingerprint',results => {classes => {'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?' => {Filesort_on_disk => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Tmp_table_on_disk => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Filesort => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_join => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_scan => {cnt => 1,max => 1,min => 1,sum => 1,unq => {'1' => 1}},Lock_time => {all => {'93' => 1},cnt => 1,last => '0.000091',max => '0.000091',min => '0.000091',sum => '9.1e-05'},Merge_passes => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Query_time => {all => {'277' => 1},cnt => 1,last => '0.726052',max => '0.726052',min => '0.726052',sum => '0.726052'},Rows_examined => {all => {'510' => 1},cnt => 1,last => 62951,max => 62951,min => 62951,sum => 62951},Rows_sent => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},bytes => {all => {'383' => 1},cnt => 1,last => 129,max => 129,min => 129,sum => 129},db => {cnt => 1,max => 'db1',min => 'db1',unq => {db1 => 1}},host => {cnt => 1,max => '',min => '',unq => {'' => 1}},pos_in_log => {all => {'403' => 1},cnt => 1,last => 332,max => 332,min => 332,sum => 332},ts => {cnt => 1,max => '071218 11:48:27',min => '071218 11:48:27',unq => {'071218 11:48:27' => 1}},user => {cnt => 1,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 1}}},'update d?va?oncept?upload set va?oncept?id = ? where va?oncept?upload=?' => {Filesort_on_disk => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Tmp_table_on_disk => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Filesort => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_join => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_scan => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},InnoDB_IO_r_bytes => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},InnoDB_IO_r_ops => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},InnoDB_IO_r_wait => {all => {'0' => 1},cnt => 1,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},InnoDB_pages_distinct => {all => {'333' => 1},cnt => 1,last => 11,max => 11,min => 11,sum => 11},InnoDB_queue_wait => {all => {'0' => 1},cnt => 1,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},InnoDB_rec_lock_wait => {all => {'0' => 1},cnt => 1,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},Lock_time => {all => {'69' => 1},cnt => 1,last => '0.000028',max => '0.000028',min => '0.000028',sum => '2.8e-05'},Merge_passes => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Query_time => {all => {'214' => 1},cnt => 1,last => '0.033384',max => '0.033384',min => '0.033384',sum => '0.033384'},Rows_examined => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},Rows_sent => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},bytes => {all => {'379' => 1},cnt => 1,last => 103,max => 103,min => 103,sum => 103},db => {cnt => 1,max => 'db1',min => 'db1',unq => {db1 => 1}},host => {cnt => 1,max => '',min => '',unq => {'' => 1}},pos_in_log => {all => {'431' => 1},cnt => 1,last => 1316,max => 1316,min => 1316,sum => 1316},ts => {cnt => 1,max => '071218 11:48:27',min => '071218 11:48:27',unq => {'071218 11:48:27' => 1}},user => {cnt => 1,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 1}}},'update foo.bar set biz = ?' => {Filesort_on_disk => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},Tmp_table_on_disk => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},Filesort => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},Full_join => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},Full_scan => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},InnoDB_IO_r_bytes => {all => {'0' => 2},cnt => 2,last => 0,max => 0,min => 0,sum => 0},InnoDB_IO_r_ops => {all => {'0' => 2},cnt => 2,last => 0,max => 0,min => 0,sum => 0},InnoDB_IO_r_wait => {all => {'0' => 2},cnt => 2,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},InnoDB_pages_distinct => {all => {'343' => 2},cnt => 2,last => 18,max => 18,min => 18,sum => 36},InnoDB_queue_wait => {all => {'0' => 2},cnt => 2,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},InnoDB_rec_lock_wait => {all => {'0' => 2},cnt => 2,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},Lock_time => {all => {'68' => 2},cnt => 2,last => '0.000027',max => '0.000027',min => '0.000027',sum => '5.4e-05'},Merge_passes => {all => {'0' => 2},cnt => 2,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},Query_time => {all => {'129' => 2},cnt => 2,last => '0.000530',max => '0.000530',min => '0.000530',sum => '0.00106'},Rows_examined => {all => {'0' => 2},cnt => 2,last => 0,max => 0,min => 0,sum => 0},Rows_sent => {all => {'0' => 2},cnt => 2,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 2,max => 0,min => 0,sum => 0,unq => {'0' => 2}},bytes => {all => {'360' => 2},cnt => 2,last => 41,max => 41,min => 41,sum => 82},db => {cnt => 2,max => 'db1',min => 'db1',unq => {db1 => 2}},host => {cnt => 2,max => '',min => '',unq => {'' => 2}},pos_in_log => {all => {'443' => 1,'450' => 1},cnt => 2,last => 3332,max => 3332,min => 2363,sum => 5695},ts => {cnt => 2,max => '071218 11:48:27',min => '071218 11:48:27',unq => {'071218 11:48:27' => 2}},user => {cnt => 2,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 2}}}},globals => {Filesort_on_disk => {cnt => 8,max => 0,min => 0,sum => 0},Tmp_table_on_disk => {cnt => 8,max => 0,min => 0,sum => 0},Filesort => {cnt => 8,max => 0,min => 0,sum => 0},Full_join => {cnt => 8,max => 0,min => 0,sum => 0},Full_scan => {cnt => 8,max => 1,min => 0,sum => 1},InnoDB_IO_r_bytes => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},InnoDB_IO_r_ops => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},InnoDB_IO_r_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},InnoDB_pages_distinct => {all => {'333' => 1,'343' => 4,'349' => 1},cnt => 6,max => 24,min => 11,sum => 107},InnoDB_queue_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},InnoDB_rec_lock_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},Lock_time => {all => {'0' => 1,'68' => 4,'69' => 1,'90' => 1,'93' => 1},cnt => 8,max => '0.000091',min => '0.000000',sum => '0.000304'},Merge_passes => {all => {'0' => 8},cnt => 8,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 8,max => 0,min => 0,sum => 0},Query_time => {all => {'128' => 1,'129' => 4,'214' => 1,'277' => 1,'51' => 1},cnt => 8,max => '0.726052',min => '0.000012',sum => '0.76208'},Rows_examined => {all => {'0' => 7,'510' => 1},cnt => 8,max => 62951,min => 0,sum => 62951},Rows_sent => {all => {'0' => 8},cnt => 8,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 8,max => 0,min => 0,sum => 0},bytes => {all => {'317' => 1,'360' => 2,'367' => 1,'368' => 1,'370' => 1,'379' => 1,'383' => 1},cnt => 8,max => 129,min => 5,sum => 502},db => {cnt => 7,max => 'db1',min => 'db1'},host => {cnt => 8,max => '',min => ''},pos_in_log => {all => {'0' => 1,'403' => 1,'421' => 1,'431' => 1,'438' => 1,'443' => 1,'447' => 1,'450' => 1},cnt => 8,max => 3332,min => 0,sum => 12811},ts => {cnt => 8,max => '071218 11:48:27',min => '071218 11:48:27'},user => {cnt => 8,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]'}},samples => {'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?' => {Filesort_on_disk => 'No',Tmp_table_on_disk => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'Yes',Lock_time => '0.000091',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.726052',Rows_examined => '62951',Rows_sent => '0',Thread_id => '10',Tmp_table => 'No',arg => 'update db2.tuningdetail_21_265507 n
2820 inner join db1.gonzo a using(gonzo)
2821- set n.column1 = a.column1, n.word3 = a.word3',bytes => 129,cmd => 'Query',db => 'db1',fingerprint => 'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?',host => '',ip => '',pos_in_log => 332,timestamp => '1197996507',ts => '071218 11:48:27',user => '[SQL_SLAVE]'},'update d?va?oncept?upload set va?oncept?id = ? where va?oncept?upload=?' => {Disk_filesort => 'No',Disk_tmp_table => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'No',InnoDB_IO_r_bytes => '0',InnoDB_IO_r_ops => '0',InnoDB_IO_r_wait => '0.000000',InnoDB_pages_distinct => '11',InnoDB_queue_wait => '0.000000',InnoDB_rec_lock_wait => '0.000000',Lock_time => '0.000028',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.033384',Rows_examined => '0',Rows_sent => '0',Thread_id => '10',Tmp_table => 'No',arg => 'UPDATE db4.vab3concept1upload
2822+ set n.column1 = a.column1, n.word3 = a.word3',bytes => 129,cmd => 'Query',db => 'db1',fingerprint => 'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?',host => '',ip => '',pos_in_log => 332,timestamp => '1197996507',ts => '071218 11:48:27',user => '[SQL_SLAVE]'},'update d?va?oncept?upload set va?oncept?id = ? where va?oncept?upload=?' => {Filesort_on_disk => 'No',Tmp_table_on_disk => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'No',InnoDB_IO_r_bytes => '0',InnoDB_IO_r_ops => '0',InnoDB_IO_r_wait => '0.000000',InnoDB_pages_distinct => '11',InnoDB_queue_wait => '0.000000',InnoDB_rec_lock_wait => '0.000000',Lock_time => '0.000028',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.033384',Rows_examined => '0',Rows_sent => '0',Thread_id => '10',Tmp_table => 'No',arg => 'UPDATE db4.vab3concept1upload
2823 SET vab3concept1id = \'91848182522\'
2824-WHERE vab3concept1upload=\'6994465\'',bytes => 103,cmd => 'Query',db => 'db1',fingerprint => 'update d?va?oncept?upload set va?oncept?id = ? where va?oncept?upload=?',host => '',ip => '',pos_in_log => 1316,ts => '071218 11:48:27',user => '[SQL_SLAVE]'},'update foo.bar set biz = ?' => {Disk_filesort => 'No',Disk_tmp_table => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'No',InnoDB_IO_r_bytes => '0',InnoDB_IO_r_ops => '0',InnoDB_IO_r_wait => '0.000000',InnoDB_pages_distinct => '18',InnoDB_queue_wait => '0.000000',InnoDB_rec_lock_wait => '0.000000',Lock_time => '0.000027',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.000530',Rows_examined => '0',Rows_sent => '0',Thread_id => '10',Tmp_table => 'No',arg => 'UPDATE foo.bar
2825-SET biz = \'91848182522\'',bytes => 41,cmd => 'Query',db => 'db1',fingerprint => 'update foo.bar set biz = ?',host => '',ip => '',pos_in_log => 3332,ts => '071218 11:48:27',user => '[SQL_SLAVE]'}}},worst => 'Query_time'};
2826\ No newline at end of file
2827+WHERE vab3concept1upload=\'6994465\'',bytes => 103,cmd => 'Query',db => 'db1',fingerprint => 'update d?va?oncept?upload set va?oncept?id = ? where va?oncept?upload=?',host => '',ip => '',pos_in_log => 1316,ts => '071218 11:48:27',user => '[SQL_SLAVE]'},'update foo.bar set biz = ?' => {Filesort_on_disk => 'No',Tmp_table_on_disk => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'No',InnoDB_IO_r_bytes => '0',InnoDB_IO_r_ops => '0',InnoDB_IO_r_wait => '0.000000',InnoDB_pages_distinct => '18',InnoDB_queue_wait => '0.000000',InnoDB_rec_lock_wait => '0.000000',Lock_time => '0.000027',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.000530',Rows_examined => '0',Rows_sent => '0',Thread_id => '10',Tmp_table => 'No',arg => 'UPDATE foo.bar
2828+SET biz = \'91848182522\'',bytes => 41,cmd => 'Query',db => 'db1',fingerprint => 'update foo.bar set biz = ?',host => '',ip => '',pos_in_log => 3332,ts => '071218 11:48:27',user => '[SQL_SLAVE]'}}},worst => 'Query_time'};
2829
2830=== modified file 't/pt-query-digest/samples/save-results/slow002.txt'
2831--- t/pt-query-digest/samples/save-results/slow002.txt 2011-06-24 22:02:05 +0000
2832+++ t/pt-query-digest/samples/save-results/slow002.txt 2012-05-31 14:13:25 +0000
2833@@ -1,3 +1,3 @@
2834-$VAR1 = {attribute_types => {Disk_filesort => 'bool',Disk_tmp_table => 'bool',Error_no => 'string',Filesort => 'bool',Full_join => 'bool',Full_scan => 'bool',InnoDB_IO_r_bytes => 'num',InnoDB_IO_r_ops => 'num',InnoDB_IO_r_wait => 'num',InnoDB_pages_distinct => 'num',InnoDB_queue_wait => 'num',InnoDB_rec_lock_wait => 'num',Killed => 'bool',Last_errno => 'string',Lock_time => 'num',Merge_passes => 'num',QC_Hit => 'bool',Query_time => 'num',Rows_examined => 'num',Rows_sent => 'num',Statement_id => 'string',Status_code => 'string',Thread_id => 'string',Tmp_table => 'bool',bytes => 'num',db => 'string',host => 'string',key_print => 'string',pos_in_log => 'num',ts => 'string',user => 'string',val => 'string'},groupby => 'fingerprint',results => {classes => {'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?' => {Disk_filesort => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Disk_tmp_table => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Filesort => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_join => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_scan => {cnt => 1,max => 1,min => 1,sum => 1,unq => {'1' => 1}},Lock_time => {all => {'93' => 1},cnt => 1,last => '0.000091',max => '0.000091',min => '0.000091',sum => '9.1e-05'},Merge_passes => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Query_time => {all => {'277' => 1},cnt => 1,last => '0.726052',max => '0.726052',min => '0.726052',sum => '0.726052'},Rows_examined => {all => {'510' => 1},cnt => 1,last => 62951,max => 62951,min => 62951,sum => 62951},Rows_sent => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},bytes => {all => {'383' => 1},cnt => 1,last => 129,max => 129,min => 129,sum => 129},db => {cnt => 1,max => 'db1',min => 'db1',unq => {db1 => 1}},host => {cnt => 1,max => '',min => '',unq => {'' => 1}},pos_in_log => {all => {'403' => 1},cnt => 1,last => 332,max => 332,min => 332,sum => 332},ts => {cnt => 1,max => '071218 11:48:27',min => '071218 11:48:27',unq => {'071218 11:48:27' => 1}},user => {cnt => 1,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 1}}}},globals => {Disk_filesort => {cnt => 8,max => 0,min => 0,sum => 0},Disk_tmp_table => {cnt => 8,max => 0,min => 0,sum => 0},Filesort => {cnt => 8,max => 0,min => 0,sum => 0},Full_join => {cnt => 8,max => 0,min => 0,sum => 0},Full_scan => {cnt => 8,max => 1,min => 0,sum => 1},InnoDB_IO_r_bytes => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},InnoDB_IO_r_ops => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},InnoDB_IO_r_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},InnoDB_pages_distinct => {all => {'333' => 1,'343' => 4,'349' => 1},cnt => 6,max => 24,min => 11,sum => 107},InnoDB_queue_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},InnoDB_rec_lock_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},Lock_time => {all => {'0' => 1,'68' => 4,'69' => 1,'90' => 1,'93' => 1},cnt => 8,max => '0.000091',min => '0.000000',sum => '0.000304'},Merge_passes => {all => {'0' => 8},cnt => 8,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 8,max => 0,min => 0,sum => 0},Query_time => {all => {'128' => 1,'129' => 4,'214' => 1,'277' => 1,'51' => 1},cnt => 8,max => '0.726052',min => '0.000012',sum => '0.76208'},Rows_examined => {all => {'0' => 7,'510' => 1},cnt => 8,max => 62951,min => 0,sum => 62951},Rows_sent => {all => {'0' => 8},cnt => 8,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 8,max => 0,min => 0,sum => 0},bytes => {all => {'317' => 1,'360' => 2,'367' => 1,'368' => 1,'370' => 1,'379' => 1,'383' => 1},cnt => 8,max => 129,min => 5,sum => 502},db => {cnt => 7,max => 'db1',min => 'db1'},host => {cnt => 8,max => '',min => ''},pos_in_log => {all => {'0' => 1,'403' => 1,'421' => 1,'431' => 1,'438' => 1,'443' => 1,'447' => 1,'450' => 1},cnt => 8,max => 3332,min => 0,sum => 12811},ts => {cnt => 8,max => '071218 11:48:27',min => '071218 11:48:27'},user => {cnt => 8,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]'}},samples => {'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?' => {Disk_filesort => 'No',Disk_tmp_table => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'Yes',Lock_time => '0.000091',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.726052',Rows_examined => '62951',Rows_sent => '0',Thread_id => '10',Tmp_table => 'No',arg => 'update db2.tuningdetail_21_265507 n
2835+$VAR1 = {attribute_types => {Filesort_on_disk => 'bool',Tmp_table_on_disk => 'bool',Error_no => 'string',Filesort => 'bool',Full_join => 'bool',Full_scan => 'bool',InnoDB_IO_r_bytes => 'num',InnoDB_IO_r_ops => 'num',InnoDB_IO_r_wait => 'num',InnoDB_pages_distinct => 'num',InnoDB_queue_wait => 'num',InnoDB_rec_lock_wait => 'num',Killed => 'bool',Last_errno => 'string',Lock_time => 'num',Merge_passes => 'num',QC_Hit => 'bool',Query_time => 'num',Rows_examined => 'num',Rows_sent => 'num',Statement_id => 'string',Status_code => 'string',Thread_id => 'string',Tmp_table => 'bool',bytes => 'num',db => 'string',host => 'string',key_print => 'string',pos_in_log => 'num',ts => 'string',user => 'string',val => 'string'},groupby => 'fingerprint',results => {classes => {'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?' => {Filesort_on_disk => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Tmp_table_on_disk => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Filesort => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_join => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_scan => {cnt => 1,max => 1,min => 1,sum => 1,unq => {'1' => 1}},Lock_time => {all => {'93' => 1},cnt => 1,last => '0.000091',max => '0.000091',min => '0.000091',sum => '9.1e-05'},Merge_passes => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Query_time => {all => {'277' => 1},cnt => 1,last => '0.726052',max => '0.726052',min => '0.726052',sum => '0.726052'},Rows_examined => {all => {'510' => 1},cnt => 1,last => 62951,max => 62951,min => 62951,sum => 62951},Rows_sent => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},bytes => {all => {'383' => 1},cnt => 1,last => 129,max => 129,min => 129,sum => 129},db => {cnt => 1,max => 'db1',min => 'db1',unq => {db1 => 1}},host => {cnt => 1,max => '',min => '',unq => {'' => 1}},pos_in_log => {all => {'403' => 1},cnt => 1,last => 332,max => 332,min => 332,sum => 332},ts => {cnt => 1,max => '071218 11:48:27',min => '071218 11:48:27',unq => {'071218 11:48:27' => 1}},user => {cnt => 1,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 1}}}},globals => {Filesort_on_disk => {cnt => 8,max => 0,min => 0,sum => 0},Tmp_table_on_disk => {cnt => 8,max => 0,min => 0,sum => 0},Filesort => {cnt => 8,max => 0,min => 0,sum => 0},Full_join => {cnt => 8,max => 0,min => 0,sum => 0},Full_scan => {cnt => 8,max => 1,min => 0,sum => 1},InnoDB_IO_r_bytes => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},InnoDB_IO_r_ops => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},InnoDB_IO_r_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},InnoDB_pages_distinct => {all => {'333' => 1,'343' => 4,'349' => 1},cnt => 6,max => 24,min => 11,sum => 107},InnoDB_queue_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},InnoDB_rec_lock_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},Lock_time => {all => {'0' => 1,'68' => 4,'69' => 1,'90' => 1,'93' => 1},cnt => 8,max => '0.000091',min => '0.000000',sum => '0.000304'},Merge_passes => {all => {'0' => 8},cnt => 8,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 8,max => 0,min => 0,sum => 0},Query_time => {all => {'128' => 1,'129' => 4,'214' => 1,'277' => 1,'51' => 1},cnt => 8,max => '0.726052',min => '0.000012',sum => '0.76208'},Rows_examined => {all => {'0' => 7,'510' => 1},cnt => 8,max => 62951,min => 0,sum => 62951},Rows_sent => {all => {'0' => 8},cnt => 8,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 8,max => 0,min => 0,sum => 0},bytes => {all => {'317' => 1,'360' => 2,'367' => 1,'368' => 1,'370' => 1,'379' => 1,'383' => 1},cnt => 8,max => 129,min => 5,sum => 502},db => {cnt => 7,max => 'db1',min => 'db1'},host => {cnt => 8,max => '',min => ''},pos_in_log => {all => {'0' => 1,'403' => 1,'421' => 1,'431' => 1,'438' => 1,'443' => 1,'447' => 1,'450' => 1},cnt => 8,max => 3332,min => 0,sum => 12811},ts => {cnt => 8,max => '071218 11:48:27',min => '071218 11:48:27'},user => {cnt => 8,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]'}},samples => {'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?' => {Filesort_on_disk => 'No',Tmp_table_on_disk => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'Yes',Lock_time => '0.000091',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.726052',Rows_examined => '62951',Rows_sent => '0',Thread_id => '10',Tmp_table => 'No',arg => 'update db2.tuningdetail_21_265507 n
2836 inner join db1.gonzo a using(gonzo)
2837- set n.column1 = a.column1, n.word3 = a.word3',bytes => 129,cmd => 'Query',db => 'db1',fingerprint => 'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?',host => '',ip => '',pos_in_log => 332,timestamp => '1197996507',ts => '071218 11:48:27',user => '[SQL_SLAVE]'}}},worst => 'Query_time'};
2838\ No newline at end of file
2839+ set n.column1 = a.column1, n.word3 = a.word3',bytes => 129,cmd => 'Query',db => 'db1',fingerprint => 'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?',host => '',ip => '',pos_in_log => 332,timestamp => '1197996507',ts => '071218 11:48:27',user => '[SQL_SLAVE]'}}},worst => 'Query_time'};
2840
2841=== modified file 't/pt-query-digest/samples/save-results/slow006.txt'
2842--- t/pt-query-digest/samples/save-results/slow006.txt 2011-06-24 22:02:05 +0000
2843+++ t/pt-query-digest/samples/save-results/slow006.txt 2012-05-31 14:13:25 +0000
2844@@ -1,1 +1,1 @@
2845-$VAR1 = {attribute_types => {Disk_filesort => 'bool',Disk_tmp_table => 'bool',Error_no => 'string',Filesort => 'bool',Full_join => 'bool',Full_scan => 'bool',Lock_time => 'num',Merge_passes => 'num',QC_Hit => 'bool',Query_time => 'num',Rows_examined => 'num',Rows_sent => 'num',Statement_id => 'string',Status_code => 'string',Tmp_table => 'bool',bytes => 'num',db => 'string',host => 'string',key_print => 'string',pos_in_log => 'num',ts => 'string',user => 'string',val => 'string'},groupby => 'fingerprint',results => {classes => {'select col from bar_tbl' => {Disk_filesort => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Disk_tmp_table => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Filesort => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Full_join => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Full_scan => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Lock_time => {all => {'0' => 3},cnt => 3,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},Merge_passes => {all => {'0' => 3},cnt => 3,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Query_time => {all => {'51' => 3},cnt => 3,last => '0.000012',max => '0.000012',min => '0.000012',sum => '3.6e-05'},Rows_examined => {all => {'0' => 3},cnt => 3,last => 0,max => 0,min => 0,sum => 0},Rows_sent => {all => {'0' => 3},cnt => 3,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},bytes => {all => {'348' => 3},cnt => 3,last => 23,max => 23,min => 23,sum => 69},db => {cnt => 3,max => 'bar',min => 'bar',unq => {bar => 3}},host => {cnt => 3,max => '',min => '',unq => {'' => 3}},pos_in_log => {all => {'419' => 1,'427' => 1,'433' => 1},cnt => 3,last => 1445,max => 1445,min => 725,sum => 3253},ts => {cnt => 3,max => '071218 11:49:07',min => '071218 11:48:57',unq => {'071218 11:48:57' => 1,'071218 11:49:05' => 1,'071218 11:49:07' => 1}},user => {cnt => 3,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 3}}},'select col from foo_tbl' => {Disk_filesort => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Disk_tmp_table => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Filesort => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Full_join => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Full_scan => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Lock_time => {all => {'0' => 3},cnt => 3,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},Merge_passes => {all => {'0' => 3},cnt => 3,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Query_time => {all => {'51' => 3},cnt => 3,last => '0.000012',max => '0.000012',min => '0.000012',sum => '3.6e-05'},Rows_examined => {all => {'0' => 3},cnt => 3,last => 0,max => 0,min => 0,sum => 0},Rows_sent => {all => {'0' => 3},cnt => 3,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},bytes => {all => {'348' => 3},cnt => 3,last => 23,max => 23,min => 23,sum => 69},db => {cnt => 3,max => 'foo',min => 'foo',unq => {foo => 3}},host => {cnt => 3,max => '',min => '',unq => {'' => 3}},pos_in_log => {all => {'0' => 1,'404' => 1,'437' => 1},cnt => 3,last => 1803,max => 1803,min => 0,sum => 2166},ts => {cnt => 3,max => '071218 11:49:30',min => '071218 11:48:27',unq => {'071218 11:48:27' => 1,'071218 11:48:57' => 1,'071218 11:49:30' => 1}},user => {cnt => 3,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 3}}}},globals => {Disk_filesort => {cnt => 6,max => 0,min => 0,sum => 0},Disk_tmp_table => {cnt => 6,max => 0,min => 0,sum => 0},Filesort => {cnt => 6,max => 0,min => 0,sum => 0},Full_join => {cnt => 6,max => 0,min => 0,sum => 0},Full_scan => {cnt => 6,max => 0,min => 0,sum => 0},Lock_time => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},Merge_passes => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 6,max => 0,min => 0,sum => 0},Query_time => {all => {'51' => 6},cnt => 6,max => '0.000012',min => '0.000012',sum => '7.2e-05'},Rows_examined => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},Rows_sent => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 6,max => 0,min => 0,sum => 0},bytes => {all => {'348' => 6},cnt => 6,max => 23,min => 23,sum => 138},db => {cnt => 6,max => 'foo',min => 'bar'},host => {cnt => 6,max => '',min => ''},pos_in_log => {all => {'0' => 1,'404' => 1,'419' => 1,'427' => 1,'433' => 1,'437' => 1},cnt => 6,max => 1803,min => 0,sum => 5419},ts => {cnt => 6,max => '071218 11:49:30',min => '071218 11:48:27'},user => {cnt => 6,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]'}},samples => {'select col from bar_tbl' => {Disk_filesort => 'No',Disk_tmp_table => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'No',Lock_time => '0.000000',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.000012',Rows_examined => '0',Rows_sent => '0',Thread_id => '20',Tmp_table => 'No',arg => 'SELECT col FROM bar_tbl',bytes => 23,cmd => 'Query',db => 'bar',fingerprint => 'select col from bar_tbl',host => '',ip => '',pos_in_log => 1445,ts => '071218 11:49:07',user => '[SQL_SLAVE]'},'select col from foo_tbl' => {Disk_filesort => 'No',Disk_tmp_table => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'No',Lock_time => '0.000000',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.000012',Rows_examined => '0',Rows_sent => '0',Thread_id => '30',Tmp_table => 'No',arg => 'SELECT col FROM foo_tbl',bytes => 23,cmd => 'Query',db => 'foo',fingerprint => 'select col from foo_tbl',host => '',ip => '',pos_in_log => 1803,ts => '071218 11:49:30',user => '[SQL_SLAVE]'}}},worst => 'Query_time'};
2846\ No newline at end of file
2847+$VAR1 = {attribute_types => {Filesort_on_disk => 'bool',Tmp_table_on_disk => 'bool',Error_no => 'string',Filesort => 'bool',Full_join => 'bool',Full_scan => 'bool',Lock_time => 'num',Merge_passes => 'num',QC_Hit => 'bool',Query_time => 'num',Rows_examined => 'num',Rows_sent => 'num',Statement_id => 'string',Status_code => 'string',Tmp_table => 'bool',bytes => 'num',db => 'string',host => 'string',key_print => 'string',pos_in_log => 'num',ts => 'string',user => 'string',val => 'string'},groupby => 'fingerprint',results => {classes => {'select col from bar_tbl' => {Filesort_on_disk => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Tmp_table_on_disk => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Filesort => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Full_join => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Full_scan => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Lock_time => {all => {'0' => 3},cnt => 3,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},Merge_passes => {all => {'0' => 3},cnt => 3,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Query_time => {all => {'51' => 3},cnt => 3,last => '0.000012',max => '0.000012',min => '0.000012',sum => '3.6e-05'},Rows_examined => {all => {'0' => 3},cnt => 3,last => 0,max => 0,min => 0,sum => 0},Rows_sent => {all => {'0' => 3},cnt => 3,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},bytes => {all => {'348' => 3},cnt => 3,last => 23,max => 23,min => 23,sum => 69},db => {cnt => 3,max => 'bar',min => 'bar',unq => {bar => 3}},host => {cnt => 3,max => '',min => '',unq => {'' => 3}},pos_in_log => {all => {'419' => 1,'427' => 1,'433' => 1},cnt => 3,last => 1445,max => 1445,min => 725,sum => 3253},ts => {cnt => 3,max => '071218 11:49:07',min => '071218 11:48:57',unq => {'071218 11:48:57' => 1,'071218 11:49:05' => 1,'071218 11:49:07' => 1}},user => {cnt => 3,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 3}}},'select col from foo_tbl' => {Filesort_on_disk => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Tmp_table_on_disk => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Filesort => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Full_join => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Full_scan => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Lock_time => {all => {'0' => 3},cnt => 3,last => '0.000000',max => '0.000000',min => '0.000000',sum => '0'},Merge_passes => {all => {'0' => 3},cnt => 3,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},Query_time => {all => {'51' => 3},cnt => 3,last => '0.000012',max => '0.000012',min => '0.000012',sum => '3.6e-05'},Rows_examined => {all => {'0' => 3},cnt => 3,last => 0,max => 0,min => 0,sum => 0},Rows_sent => {all => {'0' => 3},cnt => 3,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 3,max => 0,min => 0,sum => 0,unq => {'0' => 3}},bytes => {all => {'348' => 3},cnt => 3,last => 23,max => 23,min => 23,sum => 69},db => {cnt => 3,max => 'foo',min => 'foo',unq => {foo => 3}},host => {cnt => 3,max => '',min => '',unq => {'' => 3}},pos_in_log => {all => {'0' => 1,'404' => 1,'437' => 1},cnt => 3,last => 1803,max => 1803,min => 0,sum => 2166},ts => {cnt => 3,max => '071218 11:49:30',min => '071218 11:48:27',unq => {'071218 11:48:27' => 1,'071218 11:48:57' => 1,'071218 11:49:30' => 1}},user => {cnt => 3,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 3}}}},globals => {Filesort_on_disk => {cnt => 6,max => 0,min => 0,sum => 0},Tmp_table_on_disk => {cnt => 6,max => 0,min => 0,sum => 0},Filesort => {cnt => 6,max => 0,min => 0,sum => 0},Full_join => {cnt => 6,max => 0,min => 0,sum => 0},Full_scan => {cnt => 6,max => 0,min => 0,sum => 0},Lock_time => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},Merge_passes => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 6,max => 0,min => 0,sum => 0},Query_time => {all => {'51' => 6},cnt => 6,max => '0.000012',min => '0.000012',sum => '7.2e-05'},Rows_examined => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},Rows_sent => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 6,max => 0,min => 0,sum => 0},bytes => {all => {'348' => 6},cnt => 6,max => 23,min => 23,sum => 138},db => {cnt => 6,max => 'foo',min => 'bar'},host => {cnt => 6,max => '',min => ''},pos_in_log => {all => {'0' => 1,'404' => 1,'419' => 1,'427' => 1,'433' => 1,'437' => 1},cnt => 6,max => 1803,min => 0,sum => 5419},ts => {cnt => 6,max => '071218 11:49:30',min => '071218 11:48:27'},user => {cnt => 6,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]'}},samples => {'select col from bar_tbl' => {Filesort_on_disk => 'No',Tmp_table_on_disk => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'No',Lock_time => '0.000000',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.000012',Rows_examined => '0',Rows_sent => '0',Thread_id => '20',Tmp_table => 'No',arg => 'SELECT col FROM bar_tbl',bytes => 23,cmd => 'Query',db => 'bar',fingerprint => 'select col from bar_tbl',host => '',ip => '',pos_in_log => 1445,ts => '071218 11:49:07',user => '[SQL_SLAVE]'},'select col from foo_tbl' => {Filesort_on_disk => 'No',Tmp_table_on_disk => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'No',Lock_time => '0.000000',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.000012',Rows_examined => '0',Rows_sent => '0',Thread_id => '30',Tmp_table => 'No',arg => 'SELECT col FROM foo_tbl',bytes => 23,cmd => 'Query',db => 'foo',fingerprint => 'select col from foo_tbl',host => '',ip => '',pos_in_log => 1803,ts => '071218 11:49:30',user => '[SQL_SLAVE]'}}},worst => 'Query_time'};
2848
2849=== modified file 't/pt-query-digest/samples/slow-issue-611.txt'
2850--- t/pt-query-digest/samples/slow-issue-611.txt 2011-06-24 22:02:05 +0000
2851+++ t/pt-query-digest/samples/slow-issue-611.txt 2012-05-31 14:13:25 +0000
2852@@ -1,7 +1,7 @@
2853 # Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
2854 # Thread_id: 10
2855 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
2856-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
2857-# Filesort: No Disk_filesort: No Merge_passes: 0
2858+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
2859+# Filesort: No Filesort_on_disk: No Merge_passes: 0
2860 # No InnoDB statistics available for this query
2861 SELECT id FROM issue_611.t WHERE id IN (1,2,3);
2862
2863=== modified file 't/pt-query-digest/samples/slow002-orderbynonexistent.txt'
2864--- t/pt-query-digest/samples/slow002-orderbynonexistent.txt 2011-06-24 22:02:05 +0000
2865+++ t/pt-query-digest/samples/slow002-orderbynonexistent.txt 2012-05-31 14:13:25 +0000
2866@@ -1,6 +1,6 @@
2867 --order-by attribute Rows_read doesn't exist, using Query_time:sum
2868
2869-# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 332 ______
2870+# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 338 ______
2871 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2872 # Query_time sparkline: | ^ |
2873 # Time range: all events occurred at 2007-12-18 11:48:27
2874@@ -42,7 +42,7 @@
2875 select n.column1 = a.column1, n.word3 = a.word3 from db2.tuningdetail_21_265507 n
2876 inner join db1.gonzo a using(gonzo) \G
2877
2878-# Query 2: 0 QPS, 0x concurrency, ID 0x0FFE94ABA6A2A9E8 at byte 1316 _____
2879+# Query 2: 0 QPS, 0x concurrency, ID 0x0FFE94ABA6A2A9E8 at byte 1334 _____
2880 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2881 # Query_time sparkline: | ^ |
2882 # Time range: all events occurred at 2007-12-18 11:48:27
2883@@ -85,7 +85,7 @@
2884 # EXPLAIN /*!50100 PARTITIONS*/
2885 select vab3concept1id = '91848182522' from db4.vab3concept1upload where vab3concept1upload='6994465'\G
2886
2887-# Query 3: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 2363 _____
2888+# Query 3: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 2393 _____
2889 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2890 # Query_time sparkline: | ^ |
2891 # Time range: all events occurred at 2007-12-18 11:48:27
2892@@ -127,7 +127,7 @@
2893 # EXPLAIN /*!50100 PARTITIONS*/
2894 select biz = '91848182522' from foo.bar \G
2895
2896-# Query 4: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2825 _____
2897+# Query 4: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2861 _____
2898 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2899 # Query_time sparkline: | ^ |
2900 # Time range: all events occurred at 2007-12-18 11:48:27
2901@@ -170,7 +170,7 @@
2902 # EXPLAIN /*!50100 PARTITIONS*/
2903 select boop='bop: 899' from bizzle.bat where fillze='899'\G
2904
2905-# Query 5: 0 QPS, 0x concurrency, ID 0xC22D235B07D1D774 at byte 1840 _____
2906+# Query 5: 0 QPS, 0x concurrency, ID 0xC22D235B07D1D774 at byte 1864 _____
2907 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2908 # Query_time sparkline: | ^ |
2909 # Time range: all events occurred at 2007-12-18 11:48:27
2910@@ -209,7 +209,7 @@
2911 INSERT INTO db1.conch (word3, vid83)
2912 VALUES ('211', '18')\G
2913
2914-# Query 6: 0 QPS, 0x concurrency, ID 0x7546F89214254F2F at byte 803 ______
2915+# Query 6: 0 QPS, 0x concurrency, ID 0x7546F89214254F2F at byte 815 ______
2916 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2917 # Query_time sparkline: | ^ |
2918 # Time range: all events occurred at 2007-12-18 11:48:27
2919
2920=== modified file 't/pt-query-digest/samples/slow002_iters_2.txt'
2921--- t/pt-query-digest/samples/slow002_iters_2.txt 2011-06-24 22:02:05 +0000
2922+++ t/pt-query-digest/samples/slow002_iters_2.txt 2012-05-31 14:13:25 +0000
2923@@ -1,5 +1,5 @@
2924
2925-# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 332 ______
2926+# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 338 ______
2927 # This item is included in the report because it matches --limit.
2928 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2929 # Query_time sparkline: | ^ |
2930
2931=== modified file 't/pt-query-digest/samples/slow002_orderbyreport.txt'
2932--- t/pt-query-digest/samples/slow002_orderbyreport.txt 2011-06-24 22:02:05 +0000
2933+++ t/pt-query-digest/samples/slow002_orderbyreport.txt 2012-05-31 14:13:25 +0000
2934@@ -1,5 +1,5 @@
2935
2936-# Query 1: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 3332 _____
2937+# Query 1: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 3374 _____
2938 # This item is included in the report because it matches --limit.
2939 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2940 # Query_time sparkline: | ^ |
2941@@ -42,7 +42,7 @@
2942 # EXPLAIN /*!50100 PARTITIONS*/
2943 select biz = '91848182522' from foo.bar \G
2944
2945-# Query 2: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 332 ______
2946+# Query 2: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 338 ______
2947 # This item is included in the report because it matches --limit.
2948 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2949 # Query_time sparkline: | ^ |
2950
2951=== modified file 't/pt-query-digest/samples/slow002_report.txt'
2952--- t/pt-query-digest/samples/slow002_report.txt 2011-06-24 22:02:05 +0000
2953+++ t/pt-query-digest/samples/slow002_report.txt 2012-05-31 14:13:25 +0000
2954@@ -1,5 +1,5 @@
2955
2956-# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 332 ______
2957+# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 338 ______
2958 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2959 # Query_time sparkline: | ^ |
2960 # Time range: all events occurred at 2007-12-18 11:48:27
2961@@ -41,7 +41,7 @@
2962 select n.column1 = a.column1, n.word3 = a.word3 from db2.tuningdetail_21_265507 n
2963 inner join db1.gonzo a using(gonzo) \G
2964
2965-# Query 2: 0 QPS, 0x concurrency, ID 0x0FFE94ABA6A2A9E8 at byte 1316 _____
2966+# Query 2: 0 QPS, 0x concurrency, ID 0x0FFE94ABA6A2A9E8 at byte 1334 _____
2967 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2968 # Query_time sparkline: | ^ |
2969 # Time range: all events occurred at 2007-12-18 11:48:27
2970@@ -84,7 +84,7 @@
2971 # EXPLAIN /*!50100 PARTITIONS*/
2972 select vab3concept1id = '91848182522' from db4.vab3concept1upload where vab3concept1upload='6994465'\G
2973
2974-# Query 3: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 3332 _____
2975+# Query 3: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 3374 _____
2976 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2977 # Query_time sparkline: | ^ |
2978 # Time range: all events occurred at 2007-12-18 11:48:27
2979@@ -126,7 +126,7 @@
2980 # EXPLAIN /*!50100 PARTITIONS*/
2981 select biz = '91848182522' from foo.bar \G
2982
2983-# Query 4: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2825 _____
2984+# Query 4: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2861 _____
2985 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2986 # Query_time sparkline: | ^ |
2987 # Time range: all events occurred at 2007-12-18 11:48:27
2988@@ -169,7 +169,7 @@
2989 # EXPLAIN /*!50100 PARTITIONS*/
2990 select boop='bop: 899' from bizzle.bat where fillze='899'\G
2991
2992-# Query 5: 0 QPS, 0x concurrency, ID 0xC22D235B07D1D774 at byte 1840 _____
2993+# Query 5: 0 QPS, 0x concurrency, ID 0xC22D235B07D1D774 at byte 1864 _____
2994 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
2995 # Query_time sparkline: | ^ |
2996 # Time range: all events occurred at 2007-12-18 11:48:27
2997@@ -208,7 +208,7 @@
2998 INSERT INTO db1.conch (word3, vid83)
2999 VALUES ('211', '18')\G
3000
3001-# Query 6: 0 QPS, 0x concurrency, ID 0x7546F89214254F2F at byte 803 ______
3002+# Query 6: 0 QPS, 0x concurrency, ID 0x7546F89214254F2F at byte 815 ______
3003 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3004 # Query_time sparkline: | ^ |
3005 # Time range: all events occurred at 2007-12-18 11:48:27
3006
3007=== modified file 't/pt-query-digest/samples/slow002_report_filtered.txt'
3008--- t/pt-query-digest/samples/slow002_report_filtered.txt 2011-06-24 22:02:05 +0000
3009+++ t/pt-query-digest/samples/slow002_report_filtered.txt 2012-05-31 14:13:25 +0000
3010@@ -1,5 +1,5 @@
3011
3012-# Query 1: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2825 _____
3013+# Query 1: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2861 _____
3014 # This item is included in the report because it matches --limit.
3015 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3016 # Query_time sparkline: | ^ |
3017
3018=== modified file 't/pt-query-digest/samples/slow006-first2.txt'
3019--- t/pt-query-digest/samples/slow006-first2.txt 2011-06-24 22:02:05 +0000
3020+++ t/pt-query-digest/samples/slow006-first2.txt 2012-05-31 14:13:25 +0000
3021@@ -2,8 +2,8 @@
3022 # User@Host: [SQL_SLAVE][[SQL_SLAVE]] @ []
3023 # Thread_id: 10
3024 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
3025-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
3026-# Filesort: No Disk_filesort: No Merge_passes: 0
3027+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
3028+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3029 # No InnoDB statistics available for this query
3030 use foo;
3031 SELECT col FROM foo_tbl;
3032@@ -11,8 +11,8 @@
3033 # User@Host: [SQL_SLAVE][[SQL_SLAVE]] @ []
3034 # Thread_id: 10
3035 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
3036-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
3037-# Filesort: No Disk_filesort: No Merge_passes: 0
3038+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
3039+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3040 # No InnoDB statistics available for this query
3041 use foo;
3042 SELECT col FROM foo_tbl;
3043@@ -20,8 +20,8 @@
3044 # User@Host: [SQL_SLAVE][[SQL_SLAVE]] @ []
3045 # Thread_id: 20
3046 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
3047-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
3048-# Filesort: No Disk_filesort: No Merge_passes: 0
3049+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
3050+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3051 # No InnoDB statistics available for this query
3052 use bar;
3053 SELECT col FROM bar_tbl;
3054@@ -29,8 +29,8 @@
3055 # User@Host: [SQL_SLAVE][[SQL_SLAVE]] @ []
3056 # Thread_id: 10
3057 # Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
3058-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
3059-# Filesort: No Disk_filesort: No Merge_passes: 0
3060+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
3061+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3062 # No InnoDB statistics available for this query
3063 use bar;
3064 SELECT col FROM bar_tbl;
3065
3066=== modified file 't/pt-query-digest/samples/slow006-order-by-re.txt'
3067--- t/pt-query-digest/samples/slow006-order-by-re.txt 2011-06-24 22:02:05 +0000
3068+++ t/pt-query-digest/samples/slow006-order-by-re.txt 2012-05-31 14:13:25 +0000
3069@@ -1,5 +1,5 @@
3070
3071-# Query 1: 0.05 QPS, 0x concurrency, ID 0xA20C29AF174CE545 at byte 1803 __
3072+# Query 1: 0.05 QPS, 0x concurrency, ID 0xA20C29AF174CE545 at byte 1833 __
3073 # This item is included in the report because it matches --limit.
3074 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3075 # Query_time sparkline: | ^ |
3076@@ -32,7 +32,7 @@
3077 # EXPLAIN /*!50100 PARTITIONS*/
3078 SELECT col FROM foo_tbl\G
3079
3080-# Query 2: 0.30 QPS, 0x concurrency, ID 0xD4CD74934382A184 at byte 1445 __
3081+# Query 2: 0.30 QPS, 0x concurrency, ID 0xD4CD74934382A184 at byte 1469 __
3082 # This item is included in the report because it matches --limit.
3083 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3084 # Query_time sparkline: | ^ |
3085
3086=== modified file 't/pt-query-digest/samples/slow006_AR_1.txt'
3087--- t/pt-query-digest/samples/slow006_AR_1.txt 2011-06-24 22:02:05 +0000
3088+++ t/pt-query-digest/samples/slow006_AR_1.txt 2012-05-31 14:13:25 +0000
3089@@ -1,5 +1,5 @@
3090
3091-# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1803
3092+# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1833
3093 # This item is included in the report because it matches --limit.
3094 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3095 # Query_time sparkline: | ^ |
3096@@ -38,7 +38,7 @@
3097 # EXPLAIN /*!50100 PARTITIONS*/
3098 SELECT col FROM foo_tbl\G
3099
3100-# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1445
3101+# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
3102 # This item is included in the report because it matches --limit.
3103 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3104 # Query_time sparkline: | ^ |
3105
3106=== modified file 't/pt-query-digest/samples/slow006_AR_2.txt'
3107--- t/pt-query-digest/samples/slow006_AR_2.txt 2011-06-24 22:02:05 +0000
3108+++ t/pt-query-digest/samples/slow006_AR_2.txt 2012-05-31 14:13:25 +0000
3109@@ -1,6 +1,6 @@
3110
3111
3112-# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1445
3113+# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
3114 # This item is included in the report because it matches --limit.
3115 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3116 # Query_time sparkline: | ^ |
3117
3118=== modified file 't/pt-query-digest/samples/slow006_AR_4.txt'
3119--- t/pt-query-digest/samples/slow006_AR_4.txt 2011-06-24 22:02:05 +0000
3120+++ t/pt-query-digest/samples/slow006_AR_4.txt 2012-05-31 14:13:25 +0000
3121@@ -1,5 +1,5 @@
3122
3123-# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1803
3124+# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1833
3125 # This item is included in the report because it matches --limit.
3126 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3127 # Query_time sparkline: | ^ |
3128@@ -38,7 +38,7 @@
3129 # EXPLAIN /*!50100 PARTITIONS*/
3130 SELECT col FROM foo_tbl\G
3131
3132-# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1445
3133+# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
3134 # This item is included in the report because it matches --limit.
3135 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3136 # Query_time sparkline: | ^ |
3137
3138=== modified file 't/pt-query-digest/samples/slow006_AR_5.txt'
3139--- t/pt-query-digest/samples/slow006_AR_5.txt 2011-06-24 22:02:05 +0000
3140+++ t/pt-query-digest/samples/slow006_AR_5.txt 2012-05-31 14:13:25 +0000
3141@@ -1,6 +1,6 @@
3142
3143
3144-# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1445
3145+# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
3146 # This item is included in the report because it matches --limit.
3147 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3148 # Query_time sparkline: | ^ |
3149
3150=== modified file 't/pt-query-digest/samples/slow006_report.txt'
3151--- t/pt-query-digest/samples/slow006_report.txt 2011-06-24 22:02:05 +0000
3152+++ t/pt-query-digest/samples/slow006_report.txt 2012-05-31 14:13:25 +0000
3153@@ -1,5 +1,5 @@
3154
3155-# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1803
3156+# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1833
3157 # This item is included in the report because it matches --limit.
3158 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3159 # Query_time sparkline: | ^ |
3160@@ -32,7 +32,7 @@
3161 # EXPLAIN /*!50100 PARTITIONS*/
3162 SELECT col FROM foo_tbl\G
3163
3164-# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1445
3165+# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
3166 # This item is included in the report because it matches --limit.
3167 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3168 # Query_time sparkline: | ^ |
3169
3170=== modified file 't/pt-query-digest/samples/slow034-inheritance.txt'
3171--- t/pt-query-digest/samples/slow034-inheritance.txt 2011-06-24 22:02:05 +0000
3172+++ t/pt-query-digest/samples/slow034-inheritance.txt 2012-05-31 14:13:25 +0000
3173@@ -1,66 +1,66 @@
3174 # Time: 090805 11:00:27
3175 # Thread_id: 1
3176 # Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 9 Rows_examined: 51
3177-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
3178-# Filesort: No Disk_filesort: No Merge_passes: 0
3179+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
3180+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3181 # No InnoDB statistics available for this query
3182 use db1;
3183 SELECT * FROM foo;
3184 # Time: 090805 11:00:27
3185 # Query_time: 1.726052 Lock_time: 0.010093 Rows_sent: 1 Rows_examined: 1
3186-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
3187-# Filesort: No Disk_filesort: No Merge_passes: 0
3188+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
3189+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3190 # No InnoDB statistics available for this query
3191 use db1;
3192 SELECT id FROM tbl WHERE id = 1;
3193 # Time: 090805 11:00:27
3194 # Query_time: 9.000052 Lock_time: 0.000001 Rows_sent: 900 Rows_examined: 10000
3195-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Disk_tmp_table: No
3196-# Filesort: No Disk_filesort: Yes Merge_passes: 1
3197+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Tmp_table_on_disk: No
3198+# Filesort: No Filesort_on_disk: Yes Merge_passes: 1
3199 # No InnoDB statistics available for this query
3200 use db1;
3201 SELECT COUNT(*) FROM blah WHERE col > 2;
3202 # Time: 090805 12:00:27
3203 # Thread_id: 2
3204 # Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 9 Rows_examined: 51
3205-# QC_Hit: Yes Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
3206-# Filesort: No Disk_filesort: No Merge_passes: 0
3207+# QC_Hit: Yes Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
3208+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3209 # No InnoDB statistics available for this query
3210 use db1;
3211 SELECT * FROM foo;
3212 # Time: 090805 12:00:27
3213 # Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 0 Rows_examined: 0
3214-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
3215-# Filesort: No Disk_filesort: No Merge_passes: 0
3216+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
3217+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3218 # No InnoDB statistics available for this query
3219 use db2;
3220 INSERT INTO tbl VALUES ('a', 'b');
3221 # Time: 090805 12:00:27
3222 # Query_time: 0.000052 Lock_time: 0.010091 Rows_sent: 0 Rows_examined: 0
3223-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
3224-# Filesort: No Disk_filesort: No Merge_passes: 0
3225+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
3226+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3227 # No InnoDB statistics available for this query
3228 use db2;
3229 INSERT INTO tbl VALUES ('c', 'd');
3230 # Time: 090805 13:00:27
3231 # Thread_id: 3
3232 # Query_time: 1349.000052 Lock_time: 1349.000091 Rows_sent: 0 Rows_examined: 1928472
3233-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Disk_tmp_table: Yes
3234-# Filesort: Yes Disk_filesort: Yes Merge_passes: 0
3235+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Tmp_table_on_disk: Yes
3236+# Filesort: Yes Filesort_on_disk: Yes Merge_passes: 0
3237 # No InnoDB statistics available for this query
3238 use db3;
3239 DELETE FROM forest WHERE animal = 'dead';
3240 # Time: 090805 13:00:27
3241 # Query_time: 0.926052 Lock_time: 0.097091 Rows_sent: 8 Rows_examined: 50
3242-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
3243-# Filesort: No Disk_filesort: No Merge_passes: 0
3244+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
3245+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3246 # No InnoDB statistics available for this query
3247 use db3;
3248 SELECT * FROM foo;
3249 # Time: 090805 13:00:27
3250 # Query_time: 0.526052 Lock_time: 0.037091 Rows_sent: 7 Rows_examined: 0
3251-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
3252-# Filesort: No Disk_filesort: No Merge_passes: 0
3253+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
3254+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3255 # No InnoDB statistics available for this query
3256 use db3;
3257 SELECT * FROM foo;
3258
3259=== modified file 't/pt-query-digest/samples/slow034-no-ts-inheritance.txt'
3260--- t/pt-query-digest/samples/slow034-no-ts-inheritance.txt 2011-06-24 22:02:05 +0000
3261+++ t/pt-query-digest/samples/slow034-no-ts-inheritance.txt 2012-05-31 14:13:25 +0000
3262@@ -1,60 +1,60 @@
3263 # Time: 090805 11:00:27
3264 # Thread_id: 1
3265 # Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 9 Rows_examined: 51
3266-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
3267-# Filesort: No Disk_filesort: No Merge_passes: 0
3268+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
3269+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3270 # No InnoDB statistics available for this query
3271 use db1;
3272 SELECT * FROM foo;
3273 # Query_time: 1.726052 Lock_time: 0.010093 Rows_sent: 1 Rows_examined: 1
3274-# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
3275-# Filesort: No Disk_filesort: No Merge_passes: 0
3276+# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
3277+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3278 # No InnoDB statistics available for this query
3279 use db1;
3280 SELECT id FROM tbl WHERE id = 1;
3281 # Query_time: 9.000052 Lock_time: 0.000001 Rows_sent: 900 Rows_examined: 10000
3282-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Disk_tmp_table: No
3283-# Filesort: No Disk_filesort: Yes Merge_passes: 1
3284+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Tmp_table_on_disk: No
3285+# Filesort: No Filesort_on_disk: Yes Merge_passes: 1
3286 # No InnoDB statistics available for this query
3287 use db1;
3288 SELECT COUNT(*) FROM blah WHERE col > 2;
3289 # Time: 090805 12:00:27
3290 # Thread_id: 2
3291 # Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 9 Rows_examined: 51
3292-# QC_Hit: Yes Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
3293-# Filesort: No Disk_filesort: No Merge_passes: 0
3294+# QC_Hit: Yes Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
3295+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3296 # No InnoDB statistics available for this query
3297 use db1;
3298 SELECT * FROM foo;
3299 # Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 0 Rows_examined: 0
3300-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
3301-# Filesort: No Disk_filesort: No Merge_passes: 0
3302+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
3303+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3304 # No InnoDB statistics available for this query
3305 use db2;
3306 INSERT INTO tbl VALUES ('a', 'b');
3307 # Query_time: 0.000052 Lock_time: 0.010091 Rows_sent: 0 Rows_examined: 0
3308-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
3309-# Filesort: No Disk_filesort: No Merge_passes: 0
3310+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
3311+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3312 # No InnoDB statistics available for this query
3313 use db2;
3314 INSERT INTO tbl VALUES ('c', 'd');
3315 # Time: 090805 13:00:27
3316 # Thread_id: 3
3317 # Query_time: 1349.000052 Lock_time: 1349.000091 Rows_sent: 0 Rows_examined: 1928472
3318-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Disk_tmp_table: Yes
3319-# Filesort: Yes Disk_filesort: Yes Merge_passes: 0
3320+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Tmp_table_on_disk: Yes
3321+# Filesort: Yes Filesort_on_disk: Yes Merge_passes: 0
3322 # No InnoDB statistics available for this query
3323 use db3;
3324 DELETE FROM forest WHERE animal = 'dead';
3325 # Query_time: 0.926052 Lock_time: 0.097091 Rows_sent: 8 Rows_examined: 50
3326-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
3327-# Filesort: No Disk_filesort: No Merge_passes: 0
3328+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
3329+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3330 # No InnoDB statistics available for this query
3331 use db3;
3332 SELECT * FROM foo;
3333 # Query_time: 0.526052 Lock_time: 0.037091 Rows_sent: 7 Rows_examined: 0
3334-# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
3335-# Filesort: No Disk_filesort: No Merge_passes: 0
3336+# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
3337+# Filesort: No Filesort_on_disk: No Merge_passes: 0
3338 # No InnoDB statistics available for this query
3339 use db3;
3340 SELECT * FROM foo;
3341
3342=== modified file 't/pt-query-digest/samples/slow034-order-by-Locktime-sum-with-Locktime-distro.txt'
3343--- t/pt-query-digest/samples/slow034-order-by-Locktime-sum-with-Locktime-distro.txt 2011-06-24 22:02:05 +0000
3344+++ t/pt-query-digest/samples/slow034-order-by-Locktime-sum-with-Locktime-distro.txt 2012-05-31 14:13:25 +0000
3345@@ -1,5 +1,5 @@
3346
3347-# Query 1: 0 QPS, 0x concurrency, ID 0xABE9508269335CD1 at byte 1830 _____
3348+# Query 1: 0 QPS, 0x concurrency, ID 0xABE9508269335CD1 at byte 1866 _____
3349 # Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
3350 # Lock_time sparkline: | ^|
3351 # Time range: all events occurred at 2009-08-05 13:00:27
3352@@ -13,11 +13,11 @@
3353 # Merge passes 0 0 0 0 0 0 0 0
3354 # Query size 16 40 40 40 40 40 0 40
3355 # Boolean:
3356-# Disk filesor 100% yes, 0% no
3357-# Disk tmp tab 100% yes, 0% no
3358 # Filesort 100% yes, 0% no
3359+# Filesort on 100% yes, 0% no
3360 # Full scan 100% yes, 0% no
3361 # Tmp table 100% yes, 0% no
3362+# Tmp table on 100% yes, 0% no
3363 # String:
3364 # Databases db3
3365 # Lock_time distribution
3366@@ -37,7 +37,7 @@
3367 # EXPLAIN /*!50100 PARTITIONS*/
3368 select * from forest WHERE animal = 'dead'\G
3369
3370-# Query 2: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 916
3371+# Query 2: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 934
3372 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.03
3373 # Lock_time sparkline: | _^ |
3374 # Time range: 2009-08-05 11:00:27 to 13:00:27
3375@@ -70,7 +70,7 @@
3376 # EXPLAIN /*!50100 PARTITIONS*/
3377 SELECT * FROM foo\G
3378
3379-# Query 3: 0 QPS, 0x concurrency, ID 0xB79802214165F670 at byte 1243 _____
3380+# Query 3: 0 QPS, 0x concurrency, ID 0xB79802214165F670 at byte 1267 _____
3381 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.73
3382 # Lock_time sparkline: | ^^ |
3383 # Time range: all events occurred at 2009-08-05 12:00:27
3384@@ -101,7 +101,7 @@
3385 # SHOW CREATE TABLE `db2`.`tbl`\G
3386 INSERT INTO tbl VALUES ('a', 'b')\G
3387
3388-# Query 4: 0 QPS, 0x concurrency, ID 0x1F9B2F47A843D460 at byte 327 ______
3389+# Query 4: 0 QPS, 0x concurrency, ID 0x1F9B2F47A843D460 at byte 333 ______
3390 # Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
3391 # Lock_time sparkline: | ^ |
3392 # Time range: all events occurred at 2009-08-05 11:00:27
3393@@ -131,7 +131,7 @@
3394 # EXPLAIN /*!50100 PARTITIONS*/
3395 SELECT id FROM tbl WHERE id = 1\G
3396
3397-# Query 5: 0 QPS, 0x concurrency, ID 0x3F1024B96D9D469E at byte 613 ______
3398+# Query 5: 0 QPS, 0x concurrency, ID 0x3F1024B96D9D469E at byte 625 ______
3399 # Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
3400 # Lock_time sparkline: |^ |
3401 # Time range: all events occurred at 2009-08-05 11:00:27
3402@@ -145,7 +145,7 @@
3403 # Merge passes 100 1 1 1 1 1 0 1
3404 # Query size 15 39 39 39 39 39 0 39
3405 # Boolean:
3406-# Disk filesor 100% yes, 0% no
3407+# Filesort on 100% yes, 0% no
3408 # Full scan 100% yes, 0% no
3409 # Tmp table 100% yes, 0% no
3410 # String:
3411
3412=== modified file 't/pt-query-digest/samples/slow034-order-by-Locktime-sum.txt'
3413--- t/pt-query-digest/samples/slow034-order-by-Locktime-sum.txt 2011-06-24 22:02:05 +0000
3414+++ t/pt-query-digest/samples/slow034-order-by-Locktime-sum.txt 2012-05-31 14:13:25 +0000
3415@@ -1,5 +1,5 @@
3416
3417-# Query 1: 0 QPS, 0x concurrency, ID 0xABE9508269335CD1 at byte 1830 _____
3418+# Query 1: 0 QPS, 0x concurrency, ID 0xABE9508269335CD1 at byte 1866 _____
3419 # Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
3420 # Query_time sparkline: | ^|
3421 # Time range: all events occurred at 2009-08-05 13:00:27
3422@@ -13,11 +13,11 @@
3423 # Merge passes 0 0 0 0 0 0 0 0
3424 # Query size 16 40 40 40 40 40 0 40
3425 # Boolean:
3426-# Disk filesor 100% yes, 0% no
3427-# Disk tmp tab 100% yes, 0% no
3428 # Filesort 100% yes, 0% no
3429+# Filesort on 100% yes, 0% no
3430 # Full scan 100% yes, 0% no
3431 # Tmp table 100% yes, 0% no
3432+# Tmp table on 100% yes, 0% no
3433 # String:
3434 # Databases db3
3435 # Query_time distribution
3436@@ -37,7 +37,7 @@
3437 # EXPLAIN /*!50100 PARTITIONS*/
3438 select * from forest WHERE animal = 'dead'\G
3439
3440-# Query 2: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 916
3441+# Query 2: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 934
3442 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.03
3443 # Query_time sparkline: | ^ |
3444 # Time range: 2009-08-05 11:00:27 to 13:00:27
3445@@ -70,7 +70,7 @@
3446 # EXPLAIN /*!50100 PARTITIONS*/
3447 SELECT * FROM foo\G
3448
3449-# Query 3: 0 QPS, 0x concurrency, ID 0xB79802214165F670 at byte 1243 _____
3450+# Query 3: 0 QPS, 0x concurrency, ID 0xB79802214165F670 at byte 1267 _____
3451 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.73
3452 # Query_time sparkline: | ^ ^ |
3453 # Time range: all events occurred at 2009-08-05 12:00:27
3454@@ -101,7 +101,7 @@
3455 # SHOW CREATE TABLE `db2`.`tbl`\G
3456 INSERT INTO tbl VALUES ('a', 'b')\G
3457
3458-# Query 4: 0 QPS, 0x concurrency, ID 0x1F9B2F47A843D460 at byte 327 ______
3459+# Query 4: 0 QPS, 0x concurrency, ID 0x1F9B2F47A843D460 at byte 333 ______
3460 # Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
3461 # Query_time sparkline: | ^ |
3462 # Time range: all events occurred at 2009-08-05 11:00:27
3463@@ -131,7 +131,7 @@
3464 # EXPLAIN /*!50100 PARTITIONS*/
3465 SELECT id FROM tbl WHERE id = 1\G
3466
3467-# Query 5: 0 QPS, 0x concurrency, ID 0x3F1024B96D9D469E at byte 613 ______
3468+# Query 5: 0 QPS, 0x concurrency, ID 0x3F1024B96D9D469E at byte 625 ______
3469 # Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
3470 # Query_time sparkline: | ^ |
3471 # Time range: all events occurred at 2009-08-05 11:00:27
3472@@ -145,7 +145,7 @@
3473 # Merge passes 100 1 1 1 1 1 0 1
3474 # Query size 15 39 39 39 39 39 0 39
3475 # Boolean:
3476-# Disk filesor 100% yes, 0% no
3477+# Filesort on 100% yes, 0% no
3478 # Full scan 100% yes, 0% no
3479 # Tmp table 100% yes, 0% no
3480 # String:
3481
3482=== modified file 't/pt-query-digest/samples/slow035.txt'
3483--- t/pt-query-digest/samples/slow035.txt 2011-06-24 22:02:05 +0000
3484+++ t/pt-query-digest/samples/slow035.txt 2012-05-31 14:13:25 +0000
3485@@ -55,7 +55,7 @@
3486 # SHOW CREATE TABLE `db`.`v`\G
3487 INSERT INTO db.v (m, b) VALUES ('', 'Exact')\G
3488
3489-# Query 2: 0 QPS, 0x concurrency, ID 0x9E892D4B16D7BFC2 at byte 519 ______
3490+# Query 2: 0 QPS, 0x concurrency, ID 0x9E892D4B16D7BFC2 at byte 525 ______
3491 # This item is included in the report because it matches --limit.
3492 # Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
3493 # Query_time sparkline: | |

Subscribers

People subscribed via source and target branches