You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 14, 2024. It is now read-only.
Erhan, you could add some .sql files for testing, see if your php passes it fine.
For example I think it wouldn't pass:
comment format /* this is a comment */
query that doesn't end on first ; for example:
CREATE TRIGGER modified BEFORE UPDATE ON `table` FOR EACH ROW IF (NEW.title <> OLD.title OR
NEW.description <> OLD.description OR
NEW.text <> OLD.text) THEN
SET NEW.modified = NOW();
END IF;