~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_in.test

  • Committer: Brian Aker
  • Date: 2008-09-21 12:42:22 UTC
  • Revision ID: brian@tangent.org-20080921124222-zhjb3i0aqoz9723u
Cleanup tiny and small int.

Show diffs side-by-side

added added

removed removed

Lines of Context:
237
237
#   "unsigned_keypart NOT IN(negative_number,...)" 
238
238
#   (introduced in fix BUG#15872) 
239
239
create table t1 (
240
 
  some_id smallint(5) unsigned,
 
240
  some_id int(5) unsigned,
241
241
  key (some_id)
242
242
);
243
243
insert into t1 values (1),(2);