~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/archive.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:
14
14
SHOW VARIABLES LIKE "archive_%";
15
15
 
16
16
CREATE TABLE t1 (
17
 
  Period smallint unsigned DEFAULT '0000' NOT NULL,
18
 
  Varor_period smallint unsigned DEFAULT '0' NOT NULL
 
17
  Period int unsigned DEFAULT '0000' NOT NULL,
 
18
  Varor_period int unsigned DEFAULT '0' NOT NULL
19
19
) ENGINE=archive;
20
20
 
21
21
INSERT INTO t1 VALUES (9410,9412);
31
31
CREATE TABLE t2 (
32
32
  auto int,
33
33
  fld1 int unsigned DEFAULT '000000' NOT NULL,
34
 
  companynr tinyint unsigned DEFAULT '00' NOT NULL,
 
34
  companynr int unsigned DEFAULT '00' NOT NULL,
35
35
  fld3 char(30) DEFAULT '' NOT NULL,
36
36
  fld4 char(35) DEFAULT '' NOT NULL,
37
37
  fld5 char(35) DEFAULT '' NOT NULL,