~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/broken/t/execution_constants.test

  • Committer: Brian Aker
  • Date: 2009-01-08 22:19:12 UTC
  • Revision ID: brian@tangent.org-20090108221912-fpqs3ns36dtzhyjd
Fix for execution_constants to make it run (still failure in it).

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) 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',
 
10
  `ID_BOARD` int NOT NULL default '0',
 
11
  `ID_MEMBER` int NOT NULL default '0',
 
12
  `logTime` int NOT NULL default '0',
 
13
  `ID_MSG` int NOT NULL default '0',
14
14
  PRIMARY KEY  (`ID_MEMBER`,`ID_BOARD`),
15
15
  KEY `logTime` (`logTime`)
16
 
) ENGINE=MyISAM DEFAULT CHARSET=cp1251 COLLATE=cp1251_bulgarian_ci;
 
16
) ENGINE=MyISAM;
17
17
 
18
18
INSERT INTO `t_bug21476` VALUES (2,2,1154870939,0),(1,2,1154870957,0),(2,183,1154941362,0),(2,84,1154904301,0),(1,84,1154905867,0),(2,13,1154947484,10271),(3,84,1154880549,0),(1,6,1154892183,0),(2,25,1154947581,10271),(3,25,1154904760,0),(1,25,1154947373,10271),(1,179,1154899992,0),(2,179,1154899410,0),(5,25,1154901666,0),(2,329,1154902026,0),(3,329,1154902040,0),(1,329,1154902058,0),(1,13,1154930841,0),(3,85,1154904987,0),(1,183,1154929665,0),(3,13,1154931268,0),(1,85,1154936888,0),(1,169,1154937959,0),(2,169,1154941717,0),(3,183,1154939810,0),(3,169,1154941734,0);
19
19