提交 2ecef3a7 authored 作者: Thomas Mueller's avatar Thomas Mueller

When using an old server version (which is problematic), clustering could lead to a stack overflow.

上级 c91c421a
...@@ -219,15 +219,15 @@ public class SessionRemote extends SessionWithState implements DataHandler { ...@@ -219,15 +219,15 @@ public class SessionRemote extends SessionWithState implements DataHandler {
} }
} else { } else {
if (autoCommit) { if (autoCommit) {
if (autoCommitFalse == null) {
autoCommitFalse = prepareCommand("SET AUTOCOMMIT FALSE", Integer.MAX_VALUE);
}
autoCommitFalse.executeUpdate();
} else {
if (autoCommitTrue == null) { if (autoCommitTrue == null) {
autoCommitTrue = prepareCommand("SET AUTOCOMMIT TRUE", Integer.MAX_VALUE); autoCommitTrue = prepareCommand("SET AUTOCOMMIT TRUE", Integer.MAX_VALUE);
} }
autoCommitTrue.executeUpdate(); autoCommitTrue.executeUpdate();
} else {
if (autoCommitFalse == null) {
autoCommitFalse = prepareCommand("SET AUTOCOMMIT FALSE", Integer.MAX_VALUE);
}
autoCommitFalse.executeUpdate();
} }
} }
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论