@@ -1385,7 +1385,7 @@ Command execution and planning.
Table/Index/Constraints.
@architecture_1020_li
Undolog and redolog and transactions layer.
Undo log, redo log, and transactions layer.
@architecture_1021_li
B-tree engine and page-based storage allocation.
...
...
@@ -1496,7 +1496,7 @@ org.h2.index
Implementations of different kinds of indices
@architecture_1057_h2
Undolog and redolog and transactions layer.
Undo log, redo log, and transactions layer
@architecture_1058_p
We have a transaction log, which is shared among all sessions. See also http://en.wikipedia.org/wiki/Transaction_log http://h2database.com/html/grammar.html#set_log
...
...
@@ -1949,7 +1949,7 @@ Query Statistics: new feature which stores the newest 100 SQL queries executed a
Fix an LOB deadlock between reading and updating LOB columns.
@changelog_1028_li
Support the JDBC DatabaseMetaData#getClientInfoProperties() method, in the sense of returning an empty result, in order to make Websphere happy.
Support the JDBC DatabaseMetaData#getClientInfoProperties() method, in the sense of returning an empty result, in order to make WebSphere happy.
@changelog_1029_li
Make Server#openBrowser respect the $BROWSER environment variable. Add "chromium" to the list of browsers tried. Patch from Felix Kaiser.
# We have a transaction log, which is shared among all sessions. See also http://en.wikipedia.org/wiki/Transaction_log http://h2database.com/html/grammar.html#set_log
...
...
@@ -1949,7 +1949,7 @@ Centralリ�?ジトリ�?�利用
#Fix an LOB deadlock between reading and updating LOB columns.
@changelog_1028_li
#Support the JDBC DatabaseMetaData#getClientInfoProperties() method, in the sense of returning an empty result, in order to make Websphere happy.
#Support the JDBC DatabaseMetaData#getClientInfoProperties() method, in the sense of returning an empty result, in order to make WebSphere happy.
@changelog_1029_li
#Make Server#openBrowser respect the $BROWSER environment variable. Add "chromium" to the list of browsers tried. Patch from Felix Kaiser.
architecture_1054_td=Implementations of different kinds of tables
architecture_1055_td=org.h2.index
architecture_1056_td=Implementations of different kinds of indices
architecture_1057_h2=Undolog and redolog and transactions layer.
architecture_1057_h2=Undo log, redo log, and transactions layer
architecture_1058_p=\ We have a transaction log, which is shared among all sessions. See also http\://en.wikipedia.org/wiki/Transaction_log http\://h2database.com/html/grammar.html\#set_log
architecture_1059_p=\ We also have an undo log, which is per session, to undo an operation (an update that fails for example) and to rollback a transaction. Theoretically, the transaction log could be used, but for simplicity, H2 currently uses it's own "list of operations" (usually in-memory).
architecture_1060_p=\ With the MVStore, this is no longer needed (just the transaction log).
...
...
@@ -648,7 +648,7 @@ changelog_1024_li=Session-temporary LOB's could sometimes accumulate, increasing
changelog_1025_li=There was a bug where a hash index with more than one column would be silently converted to a regular index. It will now throw an exception.
changelog_1026_li=Query Statistics\:new feature which stores the newest 100 SQL queries executed and their performance data. Useful for tracking down badly performing queries.
changelog_1027_li=Fix an LOB deadlock between reading and updating LOB columns.
changelog_1028_li=Support the JDBC DatabaseMetaData\#getClientInfoProperties() method, in the sense of returning an empty result, in order to make Websphere happy.
changelog_1028_li=Support the JDBC DatabaseMetaData\#getClientInfoProperties() method, in the sense of returning an empty result, in order to make WebSphere happy.
changelog_1029_li=Make Server\#openBrowser respect the $BROWSER environment variable. Add "chromium" to the list of browsers tried. Patch from Felix Kaiser.
changelog_1030_li=Fix to org.h2.util.ScriptReader when handling unclosed block comments.
changelog_1031_li=Make org.h2.util.ScriptReader throw a better exception when handling broken scripts which generate extremely large statements.