提交 23b43e80 authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 d8a70f6d
...@@ -18,8 +18,13 @@ Change Log ...@@ -18,8 +18,13 @@ Change Log
<h1>Change Log</h1> <h1>Change Log</h1>
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul><li>The database now tries to detect if the classloader or virtual machine has <ul><li>File systems with a maximum file size (for example FAT) are now supported using
the file prefix 'split:'. In this case the files are split in parts of 1 GB.
Example URL: jdbc:h2:split:~/db/test. If you want to split into parts of 1 MB, use
jdbc:h2:split:20:~/db/test (the part size is 1 << x, the default is 30 meaning 1 GB).
</li><li>The database now tries to detect if the classloader or virtual machine has
almost shut down by checking if static final variables are set to null. almost shut down by checking if static final variables are set to null.
This should help reduce exceptions when stopping the web application.
</li><li>Compatibility for MS SQL Server DATEDIFF(YYYY, .., ..) </li><li>Compatibility for MS SQL Server DATEDIFF(YYYY, .., ..)
</li><li>ResultSet.getObject for CLOB or BLOB will return a java.sql.Clob / java.sql.Blob object instead of </li><li>ResultSet.getObject for CLOB or BLOB will return a java.sql.Clob / java.sql.Blob object instead of
a java.io.Reader / java.io.InputStream as in version 1.0. This behavior can be changed using the system a java.io.Reader / java.io.InputStream as in version 1.0. This behavior can be changed using the system
......
...@@ -51,7 +51,7 @@ public abstract class Tool { ...@@ -51,7 +51,7 @@ public abstract class Tool {
buff.append(dir); buff.append(dir);
} }
if (db != null) { if (db != null) {
buff.append(" for the directory "); buff.append(" for the database ");
buff.append(db); buff.append(db);
} }
out.println(buff.toString()); out.println(buff.toString());
......
...@@ -281,15 +281,22 @@ java org.h2.test.TestAll timer ...@@ -281,15 +281,22 @@ java org.h2.test.TestAll timer
/* /*
fix TODO multithreaded kernel split files (1 GB max size)
Windows service Wrapper not starting because of incorrect classpath
where is wrapper.exe
study SQLite file format
multithreaded kernel
use free ports http://www.iana.org/assignments/port-numbers
remove old TODO remove old TODO
online backup may not work for very large files online backup may not work for very large files
(document problem with jdk 1.4; document to use jar -xf) (document problem with jdk 1.4; document to use jar -xf)
split files (2 GB max size)
select last_value from conf.report_id_seq select last_value from conf.report_id_seq
test web site with firefox 3, internet explorer, opera, safari, google chrome test web site with firefox 3, internet explorer, opera, safari, google chrome
......
...@@ -486,7 +486,7 @@ public abstract class TestBase { ...@@ -486,7 +486,7 @@ public abstract class TestBase {
assertTrue(expected.length == actual.length); assertTrue(expected.length == actual.length);
for (int i = 0; i < expected.length; i++) { for (int i = 0; i < expected.length; i++) {
if (expected[i] != actual[i]) { if (expected[i] != actual[i]) {
fail("Expected[" + i + "]: a=" + (int) expected[i] + " actual=" + (int) actual[i]); fail("[" + i + "]: expected: " + (int) expected[i] + " actual: " + (int) actual[i]);
} }
} }
} }
......
...@@ -569,4 +569,4 @@ reflects doy bloom minimal gmx conserve panic serious robert thursday ...@@ -569,4 +569,4 @@ reflects doy bloom minimal gmx conserve panic serious robert thursday
wednesday saturday friday tuesday sharing opposite fassi dario clauses wednesday saturday friday tuesday sharing opposite fassi dario clauses
factorial blogspot displaying thedevcloud dayof safety chrome favorite thumbs factorial blogspot displaying thedevcloud dayof safety chrome favorite thumbs
localization olivier hprof jps jstack qua processor casting brasilia leap localization olivier hprof jps jstack qua processor casting brasilia leap
daylight vision declarative shape formula daylight vision declarative shape formula webapp catalina study impact
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论