提交 c584bb2a authored 作者: Thomas Mueller's avatar Thomas Mueller

New system property h2.analyzeAuto.

上级 273167ab
...@@ -92,7 +92,13 @@ public class Analyze extends DefineCommand { ...@@ -92,7 +92,13 @@ public class Analyze extends DefineCommand {
int selectivity = result.currentRow()[j].getInt(); int selectivity = result.currentRow()[j].getInt();
columns[j].setSelectivity(selectivity); columns[j].setSelectivity(selectivity);
} }
db.update(session, table); if (manual) {
db.update(session, table);
} else {
Session s = db.getSystemSession();
db.update(s, table);
s.commit(true);
}
} }
public void setTop(int top) { public void setTop(int top) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论