Update h2 to version 1.4.200 to be able to use MVStore #882
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR migrate NGB 2.6.1 to H2 database version
1.4.200
.Intention for this is to use MVStore as more reliable and fast (MVCC is used by default in
1.4.200
). And version1.4.200
of H2 has MVStore as a stable feature.This PR also includes fixes for some of the DB migration scripts, so manual changes is required to be made if you migrate with existing DB. Moreover to be able to benefit from new
MVStore
you will need to perform conversion for your existing H2 DB fromPageStore
toMVStore
.P.S. Also this PR contains small pmd/checkstyle fixes.