~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/compare.test

Merged in changes from Andrey.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
#
42
42
#Bug #21159: Optimizer: wrong result after AND with different data types
43
43
#
44
 
create table t1 (a tinyint(1),b binary(1));
 
44
create table t1 (a int(1),b binary(1));
45
45
insert into t1 values (0x01,0x01);
46
46
select * from t1 where a=b;
47
47
select * from t1 where a=b and b=0x01;