~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-11-10 01:54:13 UTC
  • mto: (1921.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1922.
  • Revision ID: brian@tangent.org-20101110015413-72hfqxgpklzjz0m5
Update so that we use shared_ptr from the cache throughout more of the
system.

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