19
19
# Test of hex constants in WHERE:
22
create table t1 (ID int(8) unsigned zerofill not null auto_increment,UNIQ bigint(21) unsigned zerofill not null,primary key (ID),unique (UNIQ) );
22
create table t1 (ID int(8) zerofill not null auto_increment,UNIQ bigint(21) zerofill not null,primary key (ID),unique (UNIQ) );
23
23
insert into t1 set UNIQ=0x38afba1d73e6a18a;
24
24
insert into t1 set UNIQ=123;
25
25
explain extended select * from t1 where UNIQ=0x38afba1d73e6a18a;