mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-09 07:30:02 +00:00

Made DATA DIRECTORY to be inserted at the correct place, not at the end of the create table query.
11 lines
218 B
SQL
11 lines
218 B
SQL
DROP DATABASE IF EXISTS test;
|
|
CREATE DATABASE test;
|
|
USE test;
|
|
|
|
|
|
CREATE TABLE t3 (
|
|
c INT PRIMARY KEY AUTO_INCREMENT
|
|
) ENGINE=InnoDB PARTITION BY HASH(c) PARTITIONS 4;
|
|
|
|
INSERT INTO t3 VALUES (1), (2), (3), (4), (5);
|