~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/common-tests.inc

  • Committer: Brian Aker
  • Date: 2008-10-02 19:18:43 UTC
  • mto: (438.4.1 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 435.
  • Revision ID: brian@tangent.org-20081002191843-tw3nnufik8qwf9rz
Removed UNSIGNED from parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
--enable_warnings
15
15
 
16
16
CREATE TABLE t1 (
17
 
  Period smallint(4) unsigned zerofill DEFAULT '0000' NOT NULL,
18
 
  Varor_period smallint(4) unsigned DEFAULT '0' NOT NULL
 
17
  Period smallint(4) zerofill DEFAULT '0000' NOT NULL,
 
18
  Varor_period smallint(4) DEFAULT '0' NOT NULL
19
19
);
20
20
 
21
21
INSERT INTO t1 VALUES (9410,9412);
30
30
 
31
31
CREATE TABLE t2 (
32
32
  auto int not null auto_increment,
33
 
  fld1 int(6) unsigned zerofill DEFAULT '000000' NOT NULL,
34
 
  companynr tinyint(2) unsigned zerofill DEFAULT '00' NOT NULL,
 
33
  fld1 int(6) zerofill DEFAULT '000000' NOT NULL,
 
34
  companynr tinyint(2) zerofill 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,
1497
1497
#
1498
1498
 
1499
1499
create table t4 (
1500
 
  companynr tinyint(2) unsigned zerofill NOT NULL default '00',
 
1500
  companynr tinyint(2) zerofill NOT NULL default '00',
1501
1501
  companyname char(30) NOT NULL default '',
1502
1502
  PRIMARY KEY (companynr),
1503
1503
  UNIQUE KEY companyname(companyname)