~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/myisam_mrr.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:
20
20
# BUG#30622: Incorrect query results for MRR + filesort
21
21
22
22
CREATE TABLE t1 (
23
 
  ID int(10) unsigned NOT NULL AUTO_INCREMENT,
24
 
  col1 int(10) unsigned DEFAULT NULL,
25
 
  key1 int(10) unsigned NOT NULL DEFAULT '0',
26
 
  key2 int(10) unsigned DEFAULT NULL,
 
23
  ID int(10) NOT NULL AUTO_INCREMENT,
 
24
  col1 int(10) DEFAULT NULL,
 
25
  key1 int(10) NOT NULL DEFAULT '0',
 
26
  key2 int(10) DEFAULT NULL,
27
27
  text1 text,
28
28
  text2 text,
29
29
  col2 int(6) DEFAULT '100',
30
30
  col3 enum('headers','bodyandsubject') NOT NULL DEFAULT 'bodyandsubject',
31
 
  col4 int(3) unsigned NOT NULL DEFAULT '0',
 
31
  col4 int(3) NOT NULL DEFAULT '0',
32
32
  PRIMARY KEY (ID),
33
33
  KEY (key1),
34
34
  KEY (key2)