~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/select_in_null.test

  • Committer: Brian Aker
  • Date: 2010-10-20 20:26:18 UTC
  • mfrom: (1859.2.13 refactor)
  • Revision ID: brian@tangent.org-20101020202618-9222n39lm329urv5
Merge for Brian 

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
        primary key( a )
13
13
) engine=myisam;
14
14
 
 
15
begin;
15
16
insert into foo( b ) values (1),(1),(1),(1),(1);
16
17
create table t2 as select * from foo;
17
18
insert into foo( b ) select b from t2;
28
29
create table t2 as select * from foo;
29
30
insert into foo( b ) select b from t2;
30
31
drop table t2;
 
32
commit;
31
33
 
32
34
explain select * from foo where a in (160000, 160001, 160002);
33
35
explain select * from foo where a in (null, 160000, 160001, 160002);