Unverified 提交 ce7479ed authored 作者: The Alchemist's avatar The Alchemist 提交者: GitHub

No need to remove orphaned LOBs when the db is read-only

上级 064d7ba8
......@@ -1297,7 +1297,9 @@ public class Database implements DataHandler {
closing = true;
}
}
removeOrphanedLobs();
if(!this.isReadOnly()) {
removeOrphanedLobs();
}
try {
if (systemSession != null) {
if (powerOffCount != -1) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论