~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/r/697697.result

  • Committer: kalebral at gmail
  • Date: 2010-12-04 04:58:08 UTC
  • mto: (1971.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1972.
  • Revision ID: kalebral@gmail.com-20101204045808-acto22oxfg43m02e
a few more updates of files that did not have license or had incorrect license structure

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CREATE TABLE t1 (t1i int);
2
 
CREATE TABLE t2 (t2i int);
3
 
CREATE TABLE t3 (t3i int);
4
 
CREATE TABLE t4 (t4i int);
5
 
INSERT INTO t1 VALUES (1);
6
 
INSERT INTO t2 VALUES (1),(2);
7
 
INSERT INTO t3 VALUES (1),(2);
8
 
INSERT INTO t4 VALUES (1),(2);
9
 
EXPLAIN 
10
 
SELECT t1i
11
 
FROM t1 JOIN t4 ON t1i=t4i  
12
 
WHERE (t1i)  IN (  
13
 
SELECT t2i
14
 
FROM t2  
15
 
WHERE (t2i)  IN (  
16
 
SELECT t3i
17
 
FROM t3  
18
 
GROUP BY t3i
19
 
)  
20
 
);
21
 
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
22
 
1       PRIMARY t1      ALL     NULL    NULL    NULL    NULL    1       Using where
23
 
1       PRIMARY t4      ALL     NULL    NULL    NULL    NULL    2       Using where; Using join buffer
24
 
2       SUBQUERY        t2      ALL     NULL    NULL    NULL    NULL    2       Using where
25
 
3       SUBQUERY        t3      ALL     NULL    NULL    NULL    NULL    2       Using temporary; Using filesort
26
 
DROP TABLE t1,t2,t3,t4;