mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-08 11:07:58 +00:00

- Updated modules and tests for pt-online-schema-change - Removed typo from lib/MasterSlave.pm
23 lines
554 B
SQL
23 lines
554 B
SQL
DROP DATABASE IF EXISTS test;
|
|
CREATE DATABASE test;
|
|
USE test;
|
|
|
|
DROP TABLE IF EXISTS `test`.`pt178_dummy`;
|
|
|
|
CREATE TABLE `pt178_dummy` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
f1 VARCHAR(30) NULL,
|
|
f2 BIGINT(11) DEFAULT 0,
|
|
PRIMARY KEY(id)
|
|
) ENGINE=InnoDB;
|
|
|
|
DROP TABLE IF EXISTS `pt178`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `pt178` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
f1 VARCHAR(30) DEFAULT '',
|
|
f2 BIGINT(11) DEFAULT 0,
|
|
PRIMARY KEY(id)
|
|
) ENGINE=InnoDB;
|