提交 abac8a9d authored 作者: noelgrandin's avatar noelgrandin

fix ABBA locking problem

上级 367267cc
......@@ -718,8 +718,10 @@ public class Database implements DataHandler {
records.add(rec);
}
Collections.sort(records);
for (MetaRecord rec : records) {
rec.execute(this, systemSession, eventListener);
synchronized (systemSession) {
for (MetaRecord rec : records) {
rec.execute(this, systemSession, eventListener);
}
}
if (mvStore != null) {
mvStore.initTransactions();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论