Files
percona-toolkit/t/pt-upgrade/samples/006/tables.sql
Daniel Nichter 927a3b2ed1 Test bug 942377.
2013-03-13 16:54:53 -06:00

13 lines
253 B
SQL

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');