提交 67a90bac authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 f9d3ade6
...@@ -22,19 +22,19 @@ INSERT INTO ITEM VALUES(29, ...@@ -22,19 +22,19 @@ INSERT INTO ITEM VALUES(29,
</li></ul> </li></ul>
<b>Bugfixes:</b> <b>Bugfixes:</b>
<ul><li>If the process was killed while the database was running, <ul><li>If the process was killed while the database was running,
sometimes the database could not be opened. sometimes the database could not be opened.
</li><li>Comparing columns with constants that are out of range works again. </li><li>Comparing columns with constants that are out of range works again.
</li><li>When the data type was unknown in a subquery, sometimes the wrong exception was thrown. </li><li>When the data type was unknown in a subquery, sometimes the wrong exception was thrown.
</li><li>Multi-threaded kernel (MULTI_THREADED=1): A synchronization problem has been fixed. </li><li>Multi-threaded kernel (MULTI_THREADED=1): A synchronization problem has been fixed.
</li><li>A PreparedStatement that was cancelled could not be reused. </li><li>A PreparedStatement that was cancelled could not be reused.
</li><li>When the database was closed while logging was disabled (LOG 0), </li><li>When the database was closed while logging was disabled (LOG 0),
re-opening the database was slow. re-opening the database was slow.
</li><li>The Console did not always refresh the table list when required. </li><li>The Console did not always refresh the table list when required.
</li><li>When creating a table using CREATE TABLE .. AS SELECT, </li><li>When creating a table using CREATE TABLE .. AS SELECT,
the precision for some data types was wrong in some cases. the precision for some data types was wrong in some cases.
</li><li>When using the (undocumented) in-memory file system </li><li>When using the (undocumented) in-memory file system
(jdbc:h2:memFS:x or jdbc:h2:memLZF:x), and using multiple connections, (jdbc:h2:memFS:x or jdbc:h2:memLZF:x), and using multiple connections,
a ConcurrentModificationException could occur. a ConcurrentModificationException could occur.
</li><li>REGEXP compatibility: now Matcher.find is used. </li><li>REGEXP compatibility: now Matcher.find is used.
</li><li>When using a subquery with group by as a table, some columns could not be used. </li><li>When using a subquery with group by as a table, some columns could not be used.
</li><li>Views with subqueries as tables and queries with nested subqueries as tables did not always work. </li><li>Views with subqueries as tables and queries with nested subqueries as tables did not always work.
......
...@@ -114,10 +114,10 @@ public class TestLob extends TestBase { ...@@ -114,10 +114,10 @@ public class TestLob extends TestBase {
} }
in.close(); in.close();
if (len > 0) { if (len > 0) {
// in Linux, it seems it is still possible to read in files even if they are deleted // in Linux, it seems it is still possible to read in files even if they are deleted
if(System.getProperty("os.name").indexOf("Windows") > 0) { if (System.getProperty("os.name").indexOf("Windows") > 0) {
error("Error expected; len=" + len); error("Error expected; len=" + len);
} }
} }
} catch (SQLException e) { } catch (SQLException e) {
checkNotGeneralException(e); checkNotGeneralException(e);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论