~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/myisam_mrr.test

Removed non-fcntl code and made it a fatal configure error if it's not there.

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(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,
27
27
  text1 text,
28
28
  text2 text,
29
 
  col2 int(6) DEFAULT '100',
 
29
  col2 smallint(6) DEFAULT '100',
30
30
  col3 enum('headers','bodyandsubject') NOT NULL DEFAULT 'bodyandsubject',
31
 
  col4 int(3) NOT NULL DEFAULT '0',
 
31
  col4 tinyint(3) unsigned NOT NULL DEFAULT '0',
32
32
  PRIMARY KEY (ID),
33
33
  KEY (key1),
34
34
  KEY (key2)