mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-20 02:44:58 +00:00
10 lines
177 B
SQL
10 lines
177 B
SQL
USE sakila;
|
|
CREATE TRIGGER triggers_migration_test
|
|
BEFORE
|
|
-- a comment here
|
|
INSERT ON film
|
|
-- just to make things harder
|
|
FOR EACH ROW SET NEW.length = 60
|
|
-- for pt_osc
|
|
;
|