Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upMySQL: Figure out how to handle tests that modify schema #661
Comments
killercup
added
the
mysql
label
Feb 9, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
killercup commentedFeb 9, 2017
•
edited
Our test suite for Postgres and SQLite assumes we can modify the db schema inside a transaction. This does not work on MySQL (it commits the transaction when you try to modify the schema).
We need to figure out a way to have those tests run on MySQL without introducing a bunch of overhead.
(To find affected tests, grep for
FIXME: Figure out how to handle tests that modify schema)