~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/index_merge_innodb.result

  • Committer: Brian Aker
  • Date: 2009-01-17 02:50:44 UTC
  • Revision ID: brian@gir-3.local-20090117025044-8w0tc3uzwm3p4ulg
Fix for index_merge_innodb test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
index i1(key1a, key1b),
94
94
index i2(key2a, key2b),
95
95
index i3(key3a, key3b)
96
 
);
 
96
) ENGINE=myisam;
97
97
create table t2 (a int);
98
98
insert into t2 values (0),(1),(2),(3),(4),(NULL);
99
99
insert into t1 (key1a, key1b, key2a, key2b, key3a, key3b)
111
111
explain select count(*) from t1 where
112
112
key1a = 2 and key1b is null and  key2a = 2 and key2b is null;
113
113
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
114
 
1       SIMPLE  t1      index_merge     i1,i2   i1,i2   10,10   NULL    3       Using intersect(i1,i2); Using where; Using index
 
114
1       SIMPLE  t1      index_merge     i1,i2   i1,i2   10,10   NULL    2       Using intersect(i1,i2); Using where; Using index
115
115
select count(*) from t1 where
116
116
key1a = 2 and key1b is null and key2a = 2 and key2b is null;
117
117
count(*)
119
119
explain select count(*) from t1 where
120
120
key1a = 2 and key1b is null and key3a = 2 and key3b is null;
121
121
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
122
 
1       SIMPLE  t1      index_merge     i1,i3   i1,i3   10,10   NULL    3       Using intersect(i1,i3); Using where; Using index
 
122
1       SIMPLE  t1      index_merge     i1,i3   i1,i3   10,10   NULL    2       Using intersect(i1,i3); Using where; Using index
123
123
select count(*) from t1 where
124
124
key1a = 2 and key1b is null and key3a = 2 and key3b is null;
125
125
count(*)