@@ -928,7 +928,7 @@ history_1005_h2=History of this Database Engine
history_1006_p=The development of H2 was started in May 2004, but it was first published on December 14th 2005. The author of H2, Thomas Mueller, is also the original developer of Hypersonic SQL. In 2001, he joined PointBase Inc. where he created PointBase Micro. At that point, he had to discontinue Hypersonic SQL, but then the HSQLDB Group was formed to continued to work on the Hypersonic SQL codebase. The name H2 stands for Hypersonic 2; however H2 does not share any code with Hypersonic SQL or HSQLDB. H2 is built from scratch.
history_1007_h2=Change Log
history_1008_h3=Version 1.0 (Current)
history_1009_h3=Version 1.0.x (2007-09-x)
history_1009_h3=Version 1.0.58 (2007-09-15)
history_1010_li=System.exit is no longer called by the WebServer, the Console and the Server tool (except to set the exit code if required). This is important when using OSGi.
history_1011_li=Optimization for independent subqueries. For example, this query can now an index\:SELECT * FROM TEST WHERE ID \=(SELECT MAX(ID) FROM TEST) This can be disabled by setting the system property h2.optimizeSubqueryCache to false.
history_1012_li=The explain plan now says\:/* direct lookup query */ if the query can be processed directly without reading rows, for example when using MIN(indexed column), MAX(indexed column), or COUNT(*).
...
...
@@ -948,7 +948,7 @@ history_1025_li=The database file sizes are now increased at most 32 MB at any t
history_1026_li=New method DatabaseEventListener.opened that is called just after opening a database.
history_1027_li=When using the Console with Internet Explorer 6.0 or 7.0, a Javascript error was thrown after clearing the query.
history_1028_li=A database can now be opened even if class of a user defined function is not in the classpath. Trying to call the function will throws an exception.
history_1029_li=User defined functions and constants may not overload built-in functions and constants. This didn't work before, but now trying to create such an object didn't fail.
history_1029_li=User defined functions and constants may not overload built-in functions and constants. This didn't work before, but now trying to create such an object will fail.
history_1030_li=Improved MultiDimension tool (for spatial queries)\:in the last few releases the tool was actually slower than using a regular query (because index lookup got faster, and because the tool didn't support prepared statements) Now the tool generates prepared statements, and the performance is better again (about 5 times faster for a reasonable amount of data).
history_1031_li=Adding a foreign key or when re-enabling referential integrity for a table failed when checking was enabled and the reference contained NULL.
history_1032_li=For PgServer, character encoding other than UTF-8 did not work correctly. Fixed.
...
...
@@ -1640,7 +1640,7 @@ mainWeb_1003_li=Written Java; can be compiled with GCJ (Linux)
mainWeb_1004_li=Embedded, Server and Cluster modes
mainWeb_1005_li=JDBC and (partial) ODBC API; Web Client application