~jaypipes/drizzle/replication-to-transaction

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-03-09 22:58:27 UTC
  • mfrom: (1320.1.18 build)
  • Revision ID: brian@gaz-20100309225827-7igxztca4lrj3fx3
Merge in show status work.

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` (