~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/null_key.test

  • 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:
90
90
#
91
91
 
92
92
CREATE TABLE t1 (
93
 
  id int(10) unsigned NOT NULL auto_increment,
94
 
  uniq_id int(10) unsigned default NULL,
 
93
  id int(10) NOT NULL auto_increment,
 
94
  uniq_id int(10) default NULL,
95
95
  PRIMARY KEY  (id),
96
96
  UNIQUE KEY idx1 (uniq_id)
97
97
) ENGINE=MyISAM;
98
98
 
99
99
CREATE TABLE t2 (
100
 
  id int(10) unsigned NOT NULL auto_increment,
101
 
  uniq_id int(10) unsigned default NULL,
 
100
  id int(10) NOT NULL auto_increment,
 
101
  uniq_id int(10) default NULL,
102
102
  PRIMARY KEY  (id)
103
103
) ENGINE=MyISAM;
104
104