I have code that has a different output depending on the version of MySQL . How to test such code?
- oneExplicitly specify the version of mysql when you run the tests, and depending on it, already run some tests. - Fomina Catherine
- oneHow to test such code? Have all the necessary server versions. Perform when connecting to the DBMS version checks in the application for compliance, and take the necessary measures (change the collection of requests, issue a warning and stop working, etc.). - Akina
|