~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/execution_constants.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:
7
7
# space small, and this test verifies that the reservation is not too small.
8
8
 
9
9
CREATE TABLE `t_bug21476` (
10
 
  `ID_BOARD` int(5) unsigned NOT NULL default '0',
11
 
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
12
 
  `logTime` int(10) unsigned NOT NULL default '0',
13
 
  `ID_MSG` mediumint(8) unsigned NOT NULL default '0',
 
10
  `ID_BOARD` int(5) NOT NULL default '0',
 
11
  `ID_MEMBER` mediumint(8) NOT NULL default '0',
 
12
  `logTime` int(10) NOT NULL default '0',
 
13
  `ID_MSG` mediumint(8) NOT NULL default '0',
14
14
  PRIMARY KEY  (`ID_MEMBER`,`ID_BOARD`),
15
15
  KEY `logTime` (`logTime`)
16
16
) ENGINE=MyISAM DEFAULT CHARSET=cp1251 COLLATE=cp1251_bulgarian_ci;