~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/varbinary.test

  • Committer: Monty Taylor
  • Date: 2008-07-05 11:20:18 UTC
  • mto: This revision was merged to the branch mainline in revision 62.
  • Revision ID: monty@inaugust.com-20080705112018-fr12kkmgphtu7m29
Changes so that removal of duplicate curr_dir from my_sys.h work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
# Test of hex constants in WHERE:
20
20
#
21
21
 
22
 
create table t1 (ID int(8) zerofill not null auto_increment,UNIQ bigint(21) zerofill not null,primary key (ID),unique (UNIQ) );
 
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) );
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;