mirror of
https://github.com/percona/percona-toolkit.git
synced 2026-05-06 01:01:24 +08:00
Add forked Maatkit tools in bin/ and their tests in t/.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
USE test;
|
||||
DROP TABLE IF EXISTS `issue_37`;
|
||||
CREATE TABLE `issue_37` (
|
||||
a INT DEFAULT 0,
|
||||
UNIQUE INDEX idx_a (a)
|
||||
);
|
||||
CREATE TRIGGER a_trig BEFORE INSERT ON issue_37 FOR EACH ROW SET @a = @a + NEW.a;
|
||||
Reference in New Issue
Block a user