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

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

Subscribers

People subscribed via source and target branches