~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/myisam_mrr.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:
26
26
  key2 int(10) unsigned DEFAULT NULL,
27
27
  text1 text,
28
28
  text2 text,
29
 
  col2 smallint(6) DEFAULT '100',
 
29
  col2 int(6) DEFAULT '100',
30
30
  col3 enum('headers','bodyandsubject') NOT NULL DEFAULT 'bodyandsubject',
31
 
  col4 tinyint(3) unsigned NOT NULL DEFAULT '0',
 
31
  col4 int(3) unsigned NOT NULL DEFAULT '0',
32
32
  PRIMARY KEY (ID),
33
33
  KEY (key1),
34
34
  KEY (key2)