Files
percona-toolkit/t/pt-online-schema-change/samples/pt-1455_source.sql
Sveta Smirnova 76c1202cb5 PT-2340 - Support MySQL 8.4
- Updated modules and tests for pt-online-schema-change
- Removed typo from lib/MasterSlave.pm
2024-07-30 18:20:50 +03:00

9 lines
194 B
SQL

DROP DATABASE IF EXISTS employees;
CREATE DATABASE employees;
-- This table should be replicated
CREATE TABLE employees.t1 (
id INT AUTO_INCREMENT PRIMARY KEY,
f2 INT
) ENGINE=InnoDB;