~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/myisam_mrr.test

  • Committer: Monty Taylor
  • Date: 2008-10-22 01:52:54 UTC
  • Revision ID: monty@inaugust.com-20081022015254-65qfk9f2v0b8jlk3
Moved drizzle_com to drizzled/drizzle_common. Started splitting it up.

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) NOT NULL AUTO_INCREMENT,
24
 
  col1 int(10) DEFAULT NULL,
25
 
  key1 int(10) NOT NULL DEFAULT '0',
26
 
  key2 int(10) DEFAULT NULL,
 
23
  ID int NOT NULL AUTO_INCREMENT,
 
24
  col1 int DEFAULT NULL,
 
25
  key1 int NOT NULL DEFAULT '0',
 
26
  key2 int DEFAULT NULL,
27
27
  text1 text,
28
28
  text2 text,
29
 
  col2 int(6) DEFAULT '100',
 
29
  col2 int DEFAULT '100',
30
30
  col3 enum('headers','bodyandsubject') NOT NULL DEFAULT 'bodyandsubject',
31
 
  col4 int(3) NOT NULL DEFAULT '0',
 
31
  col4 int NOT NULL DEFAULT '0',
32
32
  PRIMARY KEY (ID),
33
33
  KEY (key1),
34
34
  KEY (key2)
35
 
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
 
35
) ENGINE=MyISAM AUTO_INCREMENT=6;
36
36
 
37
37
INSERT INTO t1 VALUES
38
38
(1,NULL,1130,NULL,'Hello',NULL,100,'bodyandsubject',0),