~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/no_min_max_row.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> drop table if exists t1, t2;
 
2
Query OK, 0 rows affected (0.00 sec)
 
3
 
 
4
mysql> create table t1 (a1 int, a2 char(3), key k1(a1), key k2(a2));
 
5
Query OK, 0 rows affected (0.05 sec)
 
6
 
 
7
mysql> insert into t1 values(10,'aaa'), (10,null), (10,'bbb'), (20,'zzz');
 
8
Query OK, 4 rows affected (0.00 sec)
 
9
Records: 4  Duplicates: 0  Warnings: 0
 
10
 
 
11
mysql> create table t2(a1 char(3), a2 int, a3 real, key k1(a1), key k2(a2, a1));
 
12
Query OK, 0 rows affected (0.04 sec)
 
13
 
 
14
mysql> explain select max(t1.a1), max(t2.a2) from t1, t2;
 
15
+----+-------------+-------+------+---------------+------+---------+------+------+-------------------------+
 
16
| id | select_type | table | type | possible_keys | key  | key_len | ref  | rows | Extra                   |
 
17
+----+-------------+-------+------+---------------+------+---------+------+------+-------------------------+
 
18
|  1 | SIMPLE      | NULL  | NULL | NULL          | NULL | NULL    | NULL | NULL | No matching min/max row | 
 
19
+----+-------------+-------+------+---------------+------+---------+------+------+-------------------------+
 
20
1 row in set (0.00 sec)
 
21
 
 
22
mysql> drop table if exists t1, t2;
 
23
Query OK, 0 rows affected (0.00 sec)
 
24
 
 
25
mysql> notee;