mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-20 19:04:59 +00:00
PT-204 Added RocksDB to the list of ignored engines
This commit is contained in:
15
t/pt-table-checksum/samples/pt-204.sql
Normal file
15
t/pt-table-checksum/samples/pt-204.sql
Normal file
@@ -0,0 +1,15 @@
|
||||
DROP DATABASE IF EXISTS test;
|
||||
CREATE DATABASE test;
|
||||
USE test;
|
||||
|
||||
CREATE TABLE t1 (
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
f2 VARCHAR(30),
|
||||
f3 TIMESTAMP
|
||||
) Engine=RocksDB;
|
||||
|
||||
CREATE TABLE t2 (
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
f2 VARCHAR(30),
|
||||
f3 TIMESTAMP
|
||||
) Engine=InnoDB;
|
Reference in New Issue
Block a user