mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-28 17:15:44 +00:00

- Now --resume dies if new table or triggers do not exist - New table and triggers are not removed if --resume fails during these checkups - Added sample file and more tests for --resume
16 lines
383 B
SQL
16 lines
383 B
SQL
DROP DATABASE IF EXISTS test;
|
|
CREATE DATABASE test;
|
|
USE test;
|
|
|
|
DROP TABLE IF EXISTS `pt1717`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `pt1717` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
f1 VARCHAR(30) DEFAULT '',
|
|
f2 BIGINT(11) DEFAULT 0,
|
|
PRIMARY KEY(id),
|
|
KEY(f2),
|
|
KEY(f1, f2)
|
|
) ENGINE=InnoDB;
|