mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-08 08:11:00 +00:00
12 lines
265 B
SQL
12 lines
265 B
SQL
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');
|