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

The default setting for the system property h2.webMaxValueLength is now 100000…

The default setting for the system property h2.webMaxValueLength is now 100000 (it was 10000 before).
上级 555e06d8
......@@ -531,10 +531,12 @@ public class SysProperties {
public static final boolean TRACE_IO = getBooleanSetting("h2.traceIO", false);
/**
* System property <code>h2.webMaxValueLength</code> (default: 10000).<br />
* System property <code>h2.webMaxValueLength</code> (default: 100000).<br />
* The H2 Console will abbreviate (truncate) result values larger than this size.
* The data in the database is not truncated, it is only to avoid out of memory
* in the H2 Console application.
*/
public static final int WEB_MAX_VALUE_LENGTH = getIntSetting("h2.webMaxValueLength", 10000);
public static final int WEB_MAX_VALUE_LENGTH = getIntSetting("h2.webMaxValueLength", 100000);
private static final String H2_BASE_DIR = "h2.baseDir";
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论