Skip to content

Commit 1341fea

Browse files
committed
Increase database format version
1 parent 581ed18 commit 1341fea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

h2/src/main/org/h2/mvstore/FileStore.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ public abstract class FileStore<C extends Chunk<C>>
8080
*/
8181
static final int BLOCK_SIZE = 4 * 1024;
8282

83-
private static final int FORMAT_WRITE_MIN = 2;
84-
private static final int FORMAT_WRITE_MAX = 2;
85-
private static final int FORMAT_READ_MIN = 2;
86-
private static final int FORMAT_READ_MAX = 2;
83+
private static final int FORMAT_WRITE_MIN = 3;
84+
private static final int FORMAT_WRITE_MAX = 3;
85+
private static final int FORMAT_READ_MIN = 3;
86+
private static final int FORMAT_READ_MAX = 3;
8787

8888
MVStore mvStore;
8989
private boolean closed;

0 commit comments

Comments
 (0)