~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/null.result

  • Committer: Brian Aker
  • Date: 2009-07-28 23:44:32 UTC
  • mfrom: (1100.1.6 merge)
  • Revision ID: brian@gaz-20090728234432-t5hpryg40a4rz20b
Removal of all basic MRR

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
(7,7), (8,8), (9,9), (10,10), (11,11), (12,12);
135
135
explain select * from t1 where a between 2 and 3;
136
136
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
137
 
1       SIMPLE  t1      range   idx     idx     4       NULL    2       Using where; Using MRR
 
137
1       SIMPLE  t1      range   idx     idx     4       NULL    2       Using where
138
138
explain select * from t1 where a between 2 and 3 or b is null;
139
139
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
140
 
1       SIMPLE  t1      range   idx     idx     4       NULL    2       Using where; Using MRR
 
140
1       SIMPLE  t1      range   idx     idx     4       NULL    2       Using where
141
141
drop table t1;
142
142
create table t1 select
143
143
null as c00,