~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/select_in_null.test

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:21:52 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114052152-xnvlbrzvy3bx1ucd
add some FIXME to analyze docs.

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);