mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 21:51:21 +00:00
8 lines
145 B
SQL
8 lines
145 B
SQL
USE test;
|
|
DROP TABLE IF EXISTS args;
|
|
CREATE TABLE args (
|
|
db char(64) NOT NULL,
|
|
tbl char(64) NOT NULL,
|
|
PRIMARY KEY (db, tbl)
|
|
);
|