~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mysql_protocol.result

  • Committer: Lee Bieber
  • Date: 2010-10-27 18:28:56 UTC
  • mfrom: (1883.1.3 build)
  • Revision ID: kalebral@gmail.com-20101027182856-q3wqtbv1t4egkjsk
Merge Andrew - fix bug 667360: --defaults-file not processed before paths read           
Merge Andrew - fix bug 656577: Importing SQL script results in silent failure    
Merge Andrew - fix bug 667053: drizzledump minor output cleanup needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
CREATE TABLE `t1` (
9
9
  `a` INT DEFAULT NULL,
10
10
  KEY `a` (`a`)
11
 
) ENGINE=InnoDB COLLATE = utf8_general_ci;
 
11
) ENGINE='InnoDB' COLLATE='utf8_general_ci';
12
12
 
13
13
ALTER TABLE `t1` DISABLE KEYS;
14
14
INSERT INTO `t1` VALUES (1),(2);