~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2010-07-30 19:41:24 UTC
  • mfrom: (1674.2.4 build)
  • Revision ID: mordred@inaugust.com-20100730194124-a5clz3mahmvf97wf
Merged in intltool, transaction log null handling and valgrind suppressions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
#
4
4
 
5
5
--disable_warnings
6
 
DROP TABLE IF EXISTS t1, t2;
 
6
DROP TABLE IF EXISTS t1, t2, t3;
7
7
--enable_warnings
8
8
 
9
9
CREATE TABLE t1 (a INT NOT NULL, b CHAR(1000), PRIMARY KEY (a));
22
22
INSERT INTO t2 (b) VALUES(NULL);
23
23
INSERT INTO t2 (b) VALUES(0);
24
24
 
25
 
DROP TABLE t1, t2;
 
25
CREATE TABLE t3 (a INT NOT NULL, b ENUM ('1','2'), PRIMARY KEY(a));
 
26
INSERT INTO t3 VALUES (1,1);
 
27
INSERT INTO t3 VALUES (2,NULL);
 
28
 
 
29
DROP TABLE t1, t2, t3;