~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/select.result

  • Committer: Brian Aker
  • Date: 2008-09-21 14:47:59 UTC
  • Revision ID: brian@tangent.org-20080921144759-bfl0nnj6ntkp55cu
Remove tiny/small int.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2988
2988
DROP TABLE t1, t2;
2989
2989
create table t1 (
2990
2990
a int unsigned    not null auto_increment primary key,
2991
 
b bit             not null,
2992
 
c bit             not null
 
2991
b int             not null,
 
2992
c int             not null
2993
2993
);
2994
2994
create table t2 (
2995
2995
a int unsigned    not null auto_increment primary key,
2996
 
b bit             not null,
 
2996
b int             not null,
2997
2997
c int unsigned    not null,
2998
2998
d varchar(50)
2999
2999
);