~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/r/null_values.result

  • Committer: lbieber
  • Date: 2010-09-20 18:35:09 UTC
  • mfrom: (1779.1.4 build)
  • Revision ID: lbieber@orisndriz08-20100920183509-zjw31nf3f8clzu8k
Merge Joe - fix bug 641685 statement_transform.cc was not handling NULL values when dealing with NULL values.
Merge Shrews - fix bug 641687 - Quote ENUM values when building SQL from GPB Transaction messages.
Merge Monty - fix bug 549882 - Throw an error in configure from a bad --prefix value
Merge Monty - fix bug 565050 - Don't fail if root user runs drizzled --help

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
INSERT INTO t2 (b) VALUES(NULL);
12
12
INSERT INTO t2 (b) VALUES(0);
13
13
CREATE TABLE t3 (a INT NOT NULL, b ENUM ('1','2'), PRIMARY KEY(a));
14
 
INSERT INTO t3 VALUES (1,1);
 
14
INSERT INTO t3 VALUES (1,'1');
15
15
INSERT INTO t3 VALUES (2,NULL);
16
16
DROP TABLE t1, t2, t3;
17
17
START TRANSACTION;
61
61
CREATE TABLE `test`.`t3` (   `a` INT NOT NULL,   `b` ENUM('1','2') DEFAULT NULL,   PRIMARY KEY (`a`) ) ENGINE=InnoDB COLLATE = utf8_general_ci;
62
62
COMMIT;
63
63
START TRANSACTION;
64
 
INSERT INTO `test`.`t3` (`a`,`b`) VALUES (1,1);
 
64
INSERT INTO `test`.`t3` (`a`,`b`) VALUES (1,'1');
65
65
COMMIT;
66
66
START TRANSACTION;
67
67
INSERT INTO `test`.`t3` (`a`,`b`) VALUES (2,NULL);