~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/subselect3.result

  • Committer: Monty Taylor
  • Date: 2008-10-02 20:45:51 UTC
  • mfrom: (413.2.3 drizzle)
  • Revision ID: monty@inaugust.com-20081002204551-gousb6hhqlr6q1br
Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
744
744
DROP TABLE t1,t2,t3;
745
745
CREATE TABLE t1 (a INT NOT NULL);
746
746
INSERT INTO t1 VALUES (1),(-1), (65),(66);
747
 
CREATE TABLE t2 (a INT UNSIGNED NOT NULL PRIMARY KEY);
 
747
CREATE TABLE t2 (a INT NOT NULL PRIMARY KEY);
748
748
INSERT INTO t2 VALUES (65),(66);
749
749
SELECT a FROM t1 WHERE a NOT IN (65,66);
750
750
a
757
757
EXPLAIN SELECT a FROM t1 WHERE a NOT IN (SELECT a FROM t2);
758
758
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
759
759
1       PRIMARY t1      ALL     NULL    NULL    NULL    NULL    4       Using where
760
 
2       DEPENDENT SUBQUERY      t2      unique_subquery PRIMARY PRIMARY 4       func    1       Using index; Using where
 
760
2       DEPENDENT SUBQUERY      t2      unique_subquery PRIMARY PRIMARY 4       func    1       Using index
761
761
DROP TABLE t1, t2;
762
762
CREATE TABLE t1 (a INT);
763
763
INSERT INTO t1 VALUES(1);