~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/t/null_values.inc

  • 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:
23
23
INSERT INTO t2 (b) VALUES(0);
24
24
 
25
25
CREATE TABLE t3 (a INT NOT NULL, b ENUM ('1','2'), PRIMARY KEY(a));
26
 
INSERT INTO t3 VALUES (1,1);
 
26
INSERT INTO t3 VALUES (1,'1');
27
27
INSERT INTO t3 VALUES (2,NULL);
28
28
 
29
29
DROP TABLE t1, t2, t3;