mirror of
https://github.com/percona/percona-toolkit.git
synced 2026-04-26 01:02:25 +08:00
Add failing test case.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
drop database if exists bug1068562;
|
||||
create database bug1068562;
|
||||
use bug1068562;
|
||||
|
||||
CREATE TABLE `simon` (
|
||||
`id` int(11) NOT NULL,
|
||||
`old_column_name` varchar(255) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
insert into simon values (1,'a'),(2,'b'),(3,'c');
|
||||
Reference in New Issue
Block a user