~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/myisam.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:
309
309
# Test of REPAIR that once failed
310
310
#
311
311
CREATE TABLE `t1` (
312
 
  `post_id` mediumint(8) unsigned NOT NULL auto_increment,
313
 
  `topic_id` mediumint(8) unsigned NOT NULL default '0',
 
312
  `post_id` mediumint(8) NOT NULL auto_increment,
 
313
  `topic_id` mediumint(8) NOT NULL default '0',
314
314
  `post_time` datetime NOT NULL default '0000-00-00 00:00:00',
315
315
  `post_text` text NOT NULL,
316
316
  `icon_url` varchar(10) NOT NULL default '',
317
 
  `sign` int(1) unsigned NOT NULL default '0',
 
317
  `sign` int(1) NOT NULL default '0',
318
318
  `post_edit` varchar(150) NOT NULL default '',
319
319
  `poster_login` varchar(35) NOT NULL default '',
320
320
  `ip` varchar(15) NOT NULL default '',