提交 99a28470 authored 作者: Thomas Mueller's avatar Thomas Mueller

Issue 311: File lock mode serialized: selecting the next value from a sequence…

Issue 311: File lock mode serialized: selecting the next value from a sequence didn't work after a pause, because the database thought this is a read-only operation.
上级 e8f93382
...@@ -172,6 +172,10 @@ public abstract class Command implements CommandInterface { ...@@ -172,6 +172,10 @@ public abstract class Command implements CommandInterface {
Database database = session.getDatabase(); Database database = session.getDatabase();
Object sync = database.isMultiThreaded() ? (Object) session : (Object) database; Object sync = database.isMultiThreaded() ? (Object) session : (Object) database;
session.waitIfExclusiveModeEnabled(); session.waitIfExclusiveModeEnabled();
boolean writing = !isReadOnly();
if (writing) {
database.beforeWriting();
}
synchronized (sync) { synchronized (sync) {
session.setCurrentCommand(this); session.setCurrentCommand(this);
try { try {
...@@ -191,6 +195,9 @@ public abstract class Command implements CommandInterface { ...@@ -191,6 +195,9 @@ public abstract class Command implements CommandInterface {
throw e; throw e;
} finally { } finally {
stop(); stop();
if (writing) {
database.afterWriting();
}
} }
} }
} }
......
...@@ -20,6 +20,8 @@ import org.h2.value.ValueNull; ...@@ -20,6 +20,8 @@ import org.h2.value.ValueNull;
class CommandContainer extends Command { class CommandContainer extends Command {
private Prepared prepared; private Prepared prepared;
private boolean readOnlyKnown;
private boolean readOnly;
CommandContainer(Parser parser, String sql, Prepared prepared) { CommandContainer(Parser parser, String sql, Prepared prepared) {
super(parser, sql); super(parser, sql);
...@@ -83,7 +85,11 @@ class CommandContainer extends Command { ...@@ -83,7 +85,11 @@ class CommandContainer extends Command {
} }
public boolean isReadOnly() { public boolean isReadOnly() {
return prepared.isReadOnly(); if (!readOnlyKnown) {
readOnly = prepared.isReadOnly();
readOnlyKnown = true;
}
return readOnly;
} }
public ResultInterface queryMeta() { public ResultInterface queryMeta() {
......
...@@ -112,7 +112,7 @@ public class Explain extends Prepared { ...@@ -112,7 +112,7 @@ public class Explain extends Prepared {
} }
public boolean isReadOnly() { public boolean isReadOnly() {
return true; return command.isReadOnly();
} }
public int getType() { public int getType() {
......
...@@ -38,6 +38,8 @@ public class TestFileLockSerialized extends TestBase { ...@@ -38,6 +38,8 @@ public class TestFileLockSerialized extends TestBase {
} }
public void test() throws Exception { public void test() throws Exception {
println("testSequence");
testSequence();
println("testAutoIncrement"); println("testAutoIncrement");
testAutoIncrement(); testAutoIncrement();
println("testSequenceFlush"); println("testSequenceFlush");
...@@ -73,6 +75,21 @@ public class TestFileLockSerialized extends TestBase { ...@@ -73,6 +75,21 @@ public class TestFileLockSerialized extends TestBase {
deleteDb("fileLockSerialized"); deleteDb("fileLockSerialized");
} }
private void testSequence() throws Exception {
deleteDb("fileLockSerialized");
String url = "jdbc:h2:" + getBaseDir() + "/fileLockSerialized" +
";FILE_LOCK=SERIALIZED;OPEN_NEW=TRUE;RECONNECT_CHECK_DELAY=10";
ResultSet rs;
Connection conn1 = DriverManager.getConnection(url);
Statement stat1 = conn1.createStatement();
stat1.execute("create sequence seq");
// 5 times RECONNECT_CHECK_DELAY
Thread.sleep(100);
rs = stat1.executeQuery("call seq.nextval");
rs.next();
conn1.close();
}
private void testSequenceFlush() throws Exception { private void testSequenceFlush() throws Exception {
deleteDb("fileLockSerialized"); deleteDb("fileLockSerialized");
String url = "jdbc:h2:" + getBaseDir() + "/fileLockSerialized;FILE_LOCK=SERIALIZED;OPEN_NEW=TRUE"; String url = "jdbc:h2:" + getBaseDir() + "/fileLockSerialized;FILE_LOCK=SERIALIZED;OPEN_NEW=TRUE";
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论