mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-22 11:54:54 +00:00
Test bug 942377.
This commit is contained in:
12
t/pt-upgrade/samples/006/tables.sql
Normal file
12
t/pt-upgrade/samples/006/tables.sql
Normal 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');
|
Reference in New Issue
Block a user