~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-27 21:00:49 UTC
  • mto: This revision was merged to the branch mainline in revision 1886.
  • Revision ID: brian@tangent.org-20101027210049-zfpgx2cfbrh8maq9
A couple of fixes to documentation.

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