mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 03:43:17 +00:00
PT-207 Fixed tests
This commit is contained in:
9
t/pt-online-schema-change/samples/pt-207.sql
Normal file
9
t/pt-online-schema-change/samples/pt-207.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
CREATE SCHEMA IF NOT EXISTS test;
|
||||
USE test;
|
||||
DROP TABLE IF EXISTS t1;
|
||||
CREATE TABLE `test`.`t1` (
|
||||
`id` int(11) NOT NULL,
|
||||
`f2` int(11) DEFAULT NULL,
|
||||
`f3` varchar(255) CHARACTER SET latin1 COLLATE latin1_german1_ci,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=RocksDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
Reference in New Issue
Block a user