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
We currently have two tests for foreign key support where we make sure that deleting a row (especially over rest) cascades. This works on my machine but fails on our Jenkins builds, and some basic Googling shows that foreign key support is not always compiled into sqlite; depending on your package your foreign key declarations in your CREATE TABLE statements may just be ignored.
We should do two things:
confirm whether that's true before doing any work on this ticket, since I didn't spend enough time to be certain of what I was reading
detect whether SQLite has foreign key support compiled in, and only skip() if it isn't
The text was updated successfully, but these errors were encountered:
We currently have two tests for foreign key support where we make sure that deleting a row (especially over rest) cascades. This works on my machine but fails on our Jenkins builds, and some basic Googling shows that foreign key support is not always compiled into sqlite; depending on your package your foreign key declarations in your CREATE TABLE statements may just be ignored.
We should do two things:
The text was updated successfully, but these errors were encountered: