~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/select_in_null.test

  • Committer: lbieber at stabletransit
  • Date: 2010-10-19 14:03:27 UTC
  • mfrom: (1861.1.2 build)
  • Revision ID: lbieber@drizzle-build-n02.wc1.dfw1.stabletransit.com-20101019140327-2jvt5j2wi4pzhm1z
Merge Brian - Small collection of cleanups/refactor'ing around locks
Merge Monty - fix a few things in the tarball

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