提交 7352ba5d authored 作者: Thomas Mueller's avatar Thomas Mueller

The in-memory file systems (memFS: and memLZF:) did not support files larger than 2 GB

上级 ce473e15
...@@ -21,6 +21,9 @@ Change Log ...@@ -21,6 +21,9 @@ Change Log
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul> <ul>
<li>The in-memory file systems (memFS: and memLZF:) did not support files larger than 2 GB
due to an integer overflow.
</li>
<li>Timestamps in the trace log follow the format (yyyy-MM-dd HH:mm:ss) instead <li>Timestamps in the trace log follow the format (yyyy-MM-dd HH:mm:ss) instead
of the old format (MM-dd HH:mm:ss). Patch by Richard Bull. of the old format (MM-dd HH:mm:ss). Patch by Richard Bull.
</li> </li>
......
...@@ -163,7 +163,7 @@ public class SysProperties { ...@@ -163,7 +163,7 @@ public class SysProperties {
* Up to this many tables, the column names are listed. * Up to this many tables, the column names are listed.
*/ */
public static final int CONSOLE_MAX_TABLES_LIST_COLUMNS = public static final int CONSOLE_MAX_TABLES_LIST_COLUMNS =
Utils.getProperty("h2.consoleTableColumns", 300); Utils.getProperty("h2.consoleTableColumns", 500);
/** /**
* System property <code>h2.consoleProcedureColumns</code> * System property <code>h2.consoleProcedureColumns</code>
......
...@@ -283,7 +283,7 @@ class FileMem extends FileBase { ...@@ -283,7 +283,7 @@ class FileMem extends FileBase {
@Override @Override
public FileChannel position(long newPos) { public FileChannel position(long newPos) {
this.pos = (int) newPos; this.pos = newPos;
return this; return this;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论