Test bug 942377.

This commit is contained in:
Daniel Nichter
2013-03-13 16:54:53 -06:00
parent d3612481c2
commit 927a3b2ed1
7 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
DROP DATABASE IF EXISTS test;
CREATE DATABASE test;
USE test;
CREATE TABLE t (
id int(10) NOT NULL AUTO_INCREMENT,
city varchar(8) default NULL,
PRIMARY KEY (`id`)
);
INSERT INTO t VALUES
(null, 'aaa'),
(null, 'bbb'),
(null, 'ccc');