~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2008-07-05 19:24:24 UTC
  • mfrom: (53.2.8 codestyle)
  • Revision ID: brian@tangent.org-20080705192424-3uslywtteymm7xqy
First pass of removing BIT_TYPE

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
where table_name='t1';
175
175
drop table t1;
176
176
create table t1(f1 tinyint, f2 SMALLINT, f3 mediumint, f4 int,
177
 
                f5 BIGINT, f6 BIT, f7 bit(64));
 
177
                f5 BIGINT, f6 TINYINT, f7 SMALLINT);
178
178
select column_name, NUMERIC_PRECISION, NUMERIC_SCALE
179
179
from information_schema.columns
180
180
where table_name='t1';