Files
percona-toolkit/t/pt-upgrade/samples/007/tables.sql
Daniel Nichter 61a0770972 Add failing test.
2013-06-26 12:07:06 -07:00

12 lines
243 B
SQL

DROP DATABASE IF EXISTS test;
CREATE DATABASE test;
USE test;
CREATE TABLE t (
id int(10) NOT NULL AUTO_INCREMENT,
username varchar(8) default NULL,
PRIMARY KEY (`id`)
);
INSERT INTO t VALUES
(null, 'a'),
(null, null);