Add handling of referential actions for foreign key constraints.#21
Add handling of referential actions for foreign key constraints.#21fvbock wants to merge 1 commit intops0uth:masterfrom
Conversation
CASCADE, SET NULL, and NO ACTION are translated as is. No action defined is - per MySQL documentation actually RESTRICT and thus translated as such. (SET DEFAULT is not accepted by InnoDB)
|
just saw that the travis build failed... had a brief look but could not figure out right away whether it's related to my patch or something else... let me know if you'd need me to patch some test code too. |
|
Travis history shows no single success so this is not you. |
|
0kaaay, I had taken some time to study the code and MySQL/PostgreSQL view on standarts.
|
CASCADE, SET NULL, and NO ACTION are translated as is.
No action defined is - per MySQL documentation actually RESTRICT and thus translated as such.
(SET DEFAULT is not accepted by InnoDB)