Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
2.0.6
-
None
Description
If a table is created from another table, it will not be detected.
CREATE TABLE t1 (id INT); |
CREATE TABLE t2 LIKE t1; |
INSERT INTO t2 VALUES (1); |
The row event for t2 will not be processed.