~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/select_in_null.test

  • Committer: Stewart Smith
  • Date: 2009-10-19 03:26:17 UTC
  • mto: This revision was merged to the branch mainline in revision 1188.
  • Revision ID: stewart@flamingspork.com-20091019032617-iir6ftjjw4z3eb38
use MyISAM for tests so results for EXPLAIN are deterministic

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
drop table if exists foo;
8
8
 
9
 
create table foo (
 
9
create temporary table foo (
10
10
        a int not null auto_increment,
11
11
        b int,
12
12
        primary key( a )
13
 
);
 
13
) engine=myisam;
14
14
 
15
15
begin;
16
16
insert into foo( b ) values (1),(1),(1),(1),(1);
17
 
insert into foo( b ) select b from foo;
18
 
insert into foo( b ) select b from foo;
19
 
insert into foo( b ) select b from foo;
20
 
insert into foo( b ) select b from foo;
21
 
insert into foo( b ) select b from foo;
22
 
insert into foo( b ) select b from foo;
 
17
create table t2 as select * from foo;
 
18
insert into foo( b ) select b from t2;
 
19
drop table t2;
 
20
create table t2 as select * from foo;
 
21
insert into foo( b ) select b from t2;
 
22
drop table t2;
 
23
create table t2 as select * from foo;
 
24
insert into foo( b ) select b from t2;
 
25
drop table t2;
 
26
create table t2 as select * from foo;
 
27
insert into foo( b ) select b from t2;
 
28
drop table t2;
 
29
create table t2 as select * from foo;
 
30
insert into foo( b ) select b from t2;
 
31
drop table t2;
23
32
commit;
24
33
 
25
34
explain select * from foo where a in (160000, 160001, 160002);