PT-207 Fixed tests

This commit is contained in:
Carlos Salguero
2017-12-16 11:28:03 -03:00
parent 8c611bcb78
commit 99a17cd041
9 changed files with 113 additions and 3 deletions

View 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;