~percona-toolkit-dev/percona-toolkit/mysql-5.6-test-fixes

« back to all changes in this revision

Viewing changes to t/pt-visual-explain/samples/index_scan_sakila_film.sql

  • Committer: Daniel Nichter
  • Date: 2011-06-24 22:02:05 UTC
  • Revision ID: daniel@percona.com-20110624220205-e779cao9hcwyly1w
Add forked Maatkit tools in bin/ and their tests in t/.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
mysql> explain select * from sakila.film order by title;
 
2
+----+-------------+-------+-------+---------------+-----------+---------+------+------+-------+
 
3
| id | select_type | table | type  | possible_keys | key       | key_len | ref  | rows | Extra |
 
4
+----+-------------+-------+-------+---------------+-----------+---------+------+------+-------+
 
5
|  1 | SIMPLE      | film  | index | NULL          | idx_title | 767     | NULL |  952 |       | 
 
6
+----+-------------+-------+-------+---------------+-----------+---------+------+------+-------+
 
7
1 row in set (0.00 sec)
 
8
 
 
9
mysql> notee