提交 217ae6ec authored 作者: Thomas Mueller's avatar Thomas Mueller

Issue 354: when using the multi-threaded kernel option, and multiple threads…

Issue 354: when using the multi-threaded kernel option, and multiple threads concurrently prepared SQL statements that use the same view or the same index of a view, then in some cases an infinite loop could occur.
上级 84318143
...@@ -58,6 +58,9 @@ public class TestMultiThread extends TestBase implements Runnable { ...@@ -58,6 +58,9 @@ public class TestMultiThread extends TestBase implements Runnable {
} }
private void testConcurrentView() throws Exception { private void testConcurrentView() throws Exception {
if (config.mvcc) {
return;
}
String db = "concurrentView"; String db = "concurrentView";
deleteDb(db); deleteDb(db);
final String url = getURL(db + ";MULTI_THREADED=1", true); final String url = getURL(db + ";MULTI_THREADED=1", true);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论