drizzledump is blending INSERT statements when --skip-extended-insert is used

Bug #664212 reported by Patrick Crews
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Drizzle
Fix Released
High
Andrew Hutchings
7.0
Fix Released
High
Andrew Hutchings

Bug Description

CREATE TABLE `t1` (
  `a` INT DEFAULT NULL,
  `b` VARCHAR(1) COLLATE utf8_general_ci DEFAULT NULL
) ENGINE=InnoDB COLLATE = utf8_general_ci;

INSERT INTO `t1` VALUES (1,'a'),(1,'a'),(1,'b'),(10,'z');

drizzledump will output this fine normally, but the output looks like this if we use --skip-extended-insert:
ALTER TABLE `t1` DISABLE KEYS;
INSERT INTO `t1` VALUES (1,'a'INSERT INTO `t1` VALUES (1,'a'INSERT INTO `t1` VALUES (1,'b'INSERT INTO `t1` VALUES (10,'z');
ALTER TABLE `t1` ENABLE KEYS;

Related branches

Changed in drizzle:
status: New → Confirmed
assignee: nobody → Andrew Hutchings (linuxjedi)
Changed in drizzle:
milestone: none → 2010-10-25
importance: Undecided → High
status: Confirmed → Triaged
Changed in drizzle:
status: Triaged → Fix Committed
Changed in drizzle:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.