~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/drizzledump.result

  • Committer: Brian Aker
  • Date: 2009-06-16 00:53:22 UTC
  • mto: This revision was merged to the branch mainline in revision 1094.
  • Revision ID: brian@gaz-20090616005322-w0ode4jul9z8s2y9
Partial fix for tests for tmp

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
#
63
63
# Bug #2634
64
64
#
65
 
CREATE TABLE t1 (a int) ENGINE=MYISAM;
 
65
CREATE TABLE t1 (a int);
66
66
INSERT INTO t1 VALUES (1), (2);
67
67
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
68
68
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
69
69
DROP TABLE IF EXISTS `t1`;
70
70
CREATE TABLE `t1` (
71
71
  `a` int DEFAULT NULL
72
 
) ENGINE=MyISAM;
 
72
) ENGINE=InnoDB;
73
73
 
74
74
ALTER TABLE `t1` DISABLE KEYS;
75
75
INSERT INTO `t1` VALUES (1),(2);
81
81
DROP TABLE IF EXISTS `t1`;
82
82
CREATE TABLE `t1` (
83
83
  `a` int DEFAULT NULL
84
 
) ENGINE=MyISAM;
 
84
) ENGINE=InnoDB;
85
85
 
86
86
ALTER TABLE `t1` DISABLE KEYS;
87
87
INSERT INTO `t1` VALUES (1),(2);
1150
1150
`c"d` INT,
1151
1151
`e``f` INT,
1152
1152
PRIMARY KEY (`a b`, `c"d`, `e``f`)
1153
 
) ENGINE=MyISAM;
 
1153
);
1154
1154
insert into t1 values (0815, 4711, 2006);
1155
1155
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
1156
1156
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
1160
1160
  `c"d` int NOT NULL,
1161
1161
  `e``f` int NOT NULL,
1162
1162
  PRIMARY KEY (`a b`,`c"d`,`e``f`)
1163
 
) ENGINE=MyISAM;
 
1163
) ENGINE=InnoDB;
1164
1164
 
1165
1165
ALTER TABLE `t1` DISABLE KEYS;
1166
1166
INSERT INTO `t1` VALUES (815,4711,2006);
1175
1175
  `c"d` int NOT NULL,
1176
1176
  `e``f` int NOT NULL,
1177
1177
  PRIMARY KEY (`a b`,`c"d`,`e``f`)
1178
 
) ENGINE=MyISAM;
 
1178
) ENGINE=InnoDB;
1179
1179
 
1180
1180
ALTER TABLE `t1` DISABLE KEYS;
1181
1181
INSERT INTO `t1` VALUES (815,4711,2006);