Upgrading our project from H2 1.4.199 to 1.4.200, we get an Exception
Caused by:
org.h2.jdbc.JdbcSQLNonTransientConnectionException: Datenbank-Verbindungs Option "MVCC" nicht unterst³tzt
Unsupported connection setting "MVCC" [90113-200]
while using JDBC URL
jdbc:h2:mem:backendtests;MVCC=TRUE;MODE=PostgreSQL
I can not believe H2 dropped MCVV support for in-memory DBs, because H2 is first choice for unit tests (JUnit, TestNG) which run backend SQL in in-memory H2 for fast tests, but needs MVCC for several scenarios.
Is this a decision (which would be very sad), or an unwanted bug?