~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2008-07-05 22:08:52 UTC
  • mto: This revision was merged to the branch mainline in revision 77.
  • Revision ID: monty@inaugust.com-20080705220852-cqd9t6tfkhvlcf73
Removed HAVE_LONG_LONG, as this is now assumed.

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) NOT NULL auto_increment,
94
 
  uniq_id int(10) default NULL,
 
93
  id int(10) unsigned NOT NULL auto_increment,
 
94
  uniq_id int(10) unsigned 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) NOT NULL auto_increment,
101
 
  uniq_id int(10) default NULL,
 
100
  id int(10) unsigned NOT NULL auto_increment,
 
101
  uniq_id int(10) unsigned default NULL,
102
102
  PRIMARY KEY  (id)
103
103
) ENGINE=MyISAM;
104
104