提交 21da5789 authored 作者: Noel Grandin's avatar Noel Grandin

<li>Issue #255: ConcurrentModificationException with multiple threads in…

<li>Issue #255: ConcurrentModificationException with multiple threads in embedded mode and temporary LOBs

I think I've fixed this
上级 2c045835
...@@ -21,6 +21,8 @@ Change Log ...@@ -21,6 +21,8 @@ Change Log
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul> <ul>
<li>Issue #255: ConcurrentModificationException with multiple threads in embedded mode and temporary LOBs
</li>
<li>Issue #235: Anonymous SSL connections fail in many situations <li>Issue #235: Anonymous SSL connections fail in many situations
</li> </li>
<li>Fix race condition in FILE_LOCK=SOCKET, which could result in the watchdog thread not running <li>Fix race condition in FILE_LOCK=SOCKET, which could result in the watchdog thread not running
......
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
package org.h2.engine; package org.h2.engine;
import java.util.HashMap; import java.util.HashMap;
import org.h2.api.ErrorCode; import org.h2.api.ErrorCode;
import org.h2.command.CommandInterface; import org.h2.command.CommandInterface;
import org.h2.command.Parser; import org.h2.command.Parser;
...@@ -189,6 +188,7 @@ public class Engine implements SessionFactory { ...@@ -189,6 +188,7 @@ public class Engine implements SessionFactory {
// ignore // ignore
} }
} }
synchronized (session) {
session.setAllowLiterals(true); session.setAllowLiterals(true);
DbSettings defaultSettings = DbSettings.getDefaultSettings(); DbSettings defaultSettings = DbSettings.getDefaultSettings();
for (String setting : ci.getKeys()) { for (String setting : ci.getKeys()) {
...@@ -229,6 +229,7 @@ public class Engine implements SessionFactory { ...@@ -229,6 +229,7 @@ public class Engine implements SessionFactory {
} }
session.setAllowLiterals(false); session.setAllowLiterals(false);
session.commit(true); session.commit(true);
}
return session; return session;
} }
......
...@@ -649,6 +649,11 @@ public class Session extends SessionWithState { ...@@ -649,6 +649,11 @@ public class Session extends SessionWithState {
} }
private void removeTemporaryLobs(boolean onTimeout) { private void removeTemporaryLobs(boolean onTimeout) {
if (SysProperties.CHECK2) {
if (!Thread.holdsLock(this) && !Thread.holdsLock(getDatabase())) {
throw DbException.throwInternalError();
}
}
if (temporaryLobs != null) { if (temporaryLobs != null) {
for (Value v : temporaryLobs) { for (Value v : temporaryLobs) {
if (!v.isLinkedToTable()) { if (!v.isLinkedToTable()) {
......
...@@ -581,7 +581,9 @@ public class SessionRemote extends SessionWithState implements DataHandler { ...@@ -581,7 +581,9 @@ public class SessionRemote extends SessionWithState implements DataHandler {
} }
traceSystem.close(); traceSystem.close();
if (embedded != null) { if (embedded != null) {
synchronized (embedded) {
embedded.close(); embedded.close();
}
embedded = null; embedded = null;
} }
if (closeError != null) { if (closeError != null) {
......
...@@ -14,7 +14,6 @@ import java.io.StringWriter; ...@@ -14,7 +14,6 @@ import java.io.StringWriter;
import java.net.Socket; import java.net.Socket;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.ArrayList; import java.util.ArrayList;
import org.h2.api.ErrorCode; import org.h2.api.ErrorCode;
import org.h2.command.Command; import org.h2.command.Command;
import org.h2.engine.ConnectionInfo; import org.h2.engine.ConnectionInfo;
...@@ -182,7 +181,9 @@ public class TcpServerThread implements Runnable { ...@@ -182,7 +181,9 @@ public class TcpServerThread implements Runnable {
server.traceError(e); server.traceError(e);
} }
try { try {
synchronized (session) {
session.close(); session.close();
}
server.removeConnection(threadId); server.removeConnection(threadId);
} catch (RuntimeException e) { } catch (RuntimeException e) {
if (closeError == null) { if (closeError == null) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论