提交 788bc07f authored 作者: Thomas Mueller's avatar Thomas Mueller

Page store: compact the database file when closing (currently always completely,…

Page store: compact the database file when closing (currently always completely, which may be slow).
上级 ded7361f
......@@ -1236,10 +1236,11 @@ public class Database implements DataHandler {
if (flush) {
try {
pageStore.checkpoint();
pageStore.trim();
if (!readOnly) {
pageStore.trim();
}
} catch (Throwable e) {
int test;
// e.printStackTrace(System.out);
// TODO don't ignore exceptions
traceSystem.getTrace(Trace.DATABASE).error("close", e);
}
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论