~stewart/drizzle/embedded-innodb-create-table-with-index

« back to all changes in this revision

Viewing changes to tests/r/mysqldump-max.result

  • Committer: Stewart Smith
  • Date: 2010-03-11 01:15:57 UTC
  • mfrom: (1319.1.29)
  • Revision ID: stewart@flamingspork.com-20100311011557-49r2ye69bqh4abti
Merged embedded-innodb-rnd-read into embedded-innodb-create-table-with-index.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
) ENGINE=ARCHIVE;
87
87
 
88
88
ALTER TABLE `t2` DISABLE KEYS;
89
 
INSERT  DELAYED IGNORE INTO `t2` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
 
89
INSERT  IGNORE INTO `t2` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
90
90
ALTER TABLE `t2` ENABLE KEYS;
91
91
DROP TABLE IF EXISTS `t6`;
92
92
CREATE TABLE `t6` (
121
121
) ENGINE=ARCHIVE;
122
122
 
123
123
ALTER TABLE `t2` DISABLE KEYS;
124
 
INSERT  DELAYED INTO `t2` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
 
124
INSERT INTO `t2` VALUES (1,'first value'),(2,'first value'),(3,'first value'),(4,'first value'),(5,'first value');
125
125
ALTER TABLE `t2` ENABLE KEYS;
126
126
DROP TABLE IF EXISTS `t6`;
127
127
CREATE TABLE `t6` (