Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
2a2433e1
提交
2a2433e1
authored
1月 08, 2019
作者:
Andrei Tokar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add missing javadocs
encapsulate field in TxDecisionMaker
上级
78155dab
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
160 行增加
和
30 行删除
+160
-30
MVMap.java
h2/src/main/org/h2/mvstore/MVMap.java
+8
-12
MVStore.java
h2/src/main/org/h2/mvstore/MVStore.java
+24
-9
Page.java
h2/src/main/org/h2/mvstore/Page.java
+19
-0
Transaction.java
h2/src/main/org/h2/mvstore/tx/Transaction.java
+25
-0
TransactionStore.java
h2/src/main/org/h2/mvstore/tx/TransactionStore.java
+11
-0
TxDecisionMaker.java
h2/src/main/org/h2/mvstore/tx/TxDecisionMaker.java
+72
-8
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-1
没有找到文件。
h2/src/main/org/h2/mvstore/MVMap.java
浏览文件 @
2a2433e1
...
@@ -111,7 +111,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
...
@@ -111,7 +111,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
/**
/**
* Clone the current map.
* Clone the current map.
*
*
* @return clone of this.
* @return clone of this.
*/
*/
protected
MVMap
<
K
,
V
>
cloneIt
()
{
protected
MVMap
<
K
,
V
>
cloneIt
()
{
...
@@ -793,7 +793,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
...
@@ -793,7 +793,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
/**
/**
* Get the root reference, flushing any current append buffer.
* Get the root reference, flushing any current append buffer.
*
*
* @return current root reference
* @return current root reference
*/
*/
public
RootReference
flushAndGetRoot
()
{
public
RootReference
flushAndGetRoot
()
{
...
@@ -811,7 +811,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
...
@@ -811,7 +811,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
/**
/**
* Set the initial root.
* Set the initial root.
*
*
* @param rootPage root page
* @param rootPage root page
* @param version initial version
* @param version initial version
*/
*/
...
@@ -878,7 +878,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
...
@@ -878,7 +878,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
/**
/**
* Roll the root back to the specified version.
* Roll the root back to the specified version.
*
*
* @param version to rollback to
* @param version to rollback to
*/
*/
void
rollbackRoot
(
long
version
)
void
rollbackRoot
(
long
version
)
...
@@ -1094,7 +1094,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
...
@@ -1094,7 +1094,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
/**
/**
* Does the root have changes since the specified version?
* Does the root have changes since the specified version?
*
*
* @param version root version
* @param version root version
* @return true if has changes
* @return true if has changes
*/
*/
...
@@ -1105,10 +1105,6 @@ public class MVMap<K, V> extends AbstractMap<K, V>
...
@@ -1105,10 +1105,6 @@ public class MVMap<K, V> extends AbstractMap<K, V>
getVersion
(
rootReference
)
>
version
;
getVersion
(
rootReference
)
>
version
;
}
}
public
boolean
isSingleWriter
()
{
return
singleWriter
;
}
/**
/**
* Get the child page count for this page. This is to allow another map
* Get the child page count for this page. This is to allow another map
* implementation to override the default, in case the last child is not to
* implementation to override the default, in case the last child is not to
...
@@ -1173,7 +1169,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
...
@@ -1173,7 +1169,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
/**
/**
* Create empty leaf node page.
* Create empty leaf node page.
*
*
* @return new page
* @return new page
*/
*/
public
Page
createEmptyLeaf
()
{
public
Page
createEmptyLeaf
()
{
...
@@ -1182,7 +1178,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
...
@@ -1182,7 +1178,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
/**
/**
* Create empty internal node page.
* Create empty internal node page.
*
*
* @return new page
* @return new page
*/
*/
protected
Page
createEmptyNode
()
{
protected
Page
createEmptyNode
()
{
...
@@ -1816,7 +1812,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
...
@@ -1816,7 +1812,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
/**
/**
* Apply an operation to a key-value pair.
* Apply an operation to a key-value pair.
*
*
* @param key key to operate on
* @param key key to operate on
* @param value new value
* @param value new value
* @param decisionMaker command object to make choices during transaction.
* @param decisionMaker command object to make choices during transaction.
...
...
h2/src/main/org/h2/mvstore/MVStore.java
浏览文件 @
2a2433e1
...
@@ -503,7 +503,7 @@ public class MVStore implements AutoCloseable {
...
@@ -503,7 +503,7 @@ public class MVStore implements AutoCloseable {
return
map
;
return
map
;
}
}
p
ublic
<
M
extends
MVMap
<
K
,
V
>,
K
,
V
>
M
openMap
(
int
id
,
MVMap
.
MapBuilder
<
M
,
K
,
V
>
builder
)
{
p
rivate
<
M
extends
MVMap
<
K
,
V
>,
K
,
V
>
M
openMap
(
int
id
,
MVMap
.
MapBuilder
<
M
,
K
,
V
>
builder
)
{
storeLock
.
lock
();
storeLock
.
lock
();
try
{
try
{
@SuppressWarnings
(
"unchecked"
)
@SuppressWarnings
(
"unchecked"
)
...
@@ -531,7 +531,7 @@ public class MVStore implements AutoCloseable {
...
@@ -531,7 +531,7 @@ public class MVStore implements AutoCloseable {
/**
/**
* Get map by id.
* Get map by id.
*
*
* @param <K> the key type
* @param <K> the key type
* @param <V> the value type
* @param <V> the value type
* @param id map id
* @param id map id
...
@@ -619,7 +619,7 @@ public class MVStore implements AutoCloseable {
...
@@ -619,7 +619,7 @@ public class MVStore implements AutoCloseable {
/**
/**
* Check whether a given map exists and has data.
* Check whether a given map exists and has data.
*
*
* @param name the map name
* @param name the map name
* @return true if it exists and has data.
* @return true if it exists and has data.
*/
*/
...
@@ -985,7 +985,7 @@ public class MVStore implements AutoCloseable {
...
@@ -985,7 +985,7 @@ public class MVStore implements AutoCloseable {
/**
/**
* Read a page of data into a ByteBuffer.
* Read a page of data into a ByteBuffer.
*
*
* @param pos page pos
* @param pos page pos
* @param expectedMapId expected map id for the page
* @param expectedMapId expected map id for the page
* @return ByteBuffer containing page data.
* @return ByteBuffer containing page data.
...
@@ -1516,7 +1516,7 @@ public class MVStore implements AutoCloseable {
...
@@ -1516,7 +1516,7 @@ public class MVStore implements AutoCloseable {
/**
/**
* Visit a page on a chunk and collect ids for it and its children.
* Visit a page on a chunk and collect ids for it and its children.
*
*
* @param page the page to visit
* @param page the page to visit
* @param executorService the service to use when doing visit in parallel
* @param executorService the service to use when doing visit in parallel
* @param executingThreadCounter number of threads currently active
* @param executingThreadCounter number of threads currently active
...
@@ -1545,7 +1545,7 @@ public class MVStore implements AutoCloseable {
...
@@ -1545,7 +1545,7 @@ public class MVStore implements AutoCloseable {
/**
/**
* Visit a page on a chunk and collect ids for it and its children.
* Visit a page on a chunk and collect ids for it and its children.
*
*
* @param pos position of the page to visit
* @param pos position of the page to visit
* @param executorService the service to use when doing visit in parallel
* @param executorService the service to use when doing visit in parallel
* @param executingThreadCounter number of threads currently active
* @param executingThreadCounter number of threads currently active
...
@@ -1581,7 +1581,7 @@ public class MVStore implements AutoCloseable {
...
@@ -1581,7 +1581,7 @@ public class MVStore implements AutoCloseable {
/**
/**
* Add chunk to list of referenced chunks.
* Add chunk to list of referenced chunks.
*
*
* @param chunkId chunk id
* @param chunkId chunk id
*/
*/
void
registerChunk
(
int
chunkId
)
{
void
registerChunk
(
int
chunkId
)
{
...
@@ -2645,7 +2645,7 @@ public class MVStore implements AutoCloseable {
...
@@ -2645,7 +2645,7 @@ public class MVStore implements AutoCloseable {
/**
/**
* Remove a map.
* Remove a map.
*
*
* @param map the map to remove
* @param map the map to remove
* @param delayed whether to delay deleting the metadata
* @param delayed whether to delay deleting the metadata
*/
*/
...
@@ -2685,7 +2685,7 @@ public class MVStore implements AutoCloseable {
...
@@ -2685,7 +2685,7 @@ public class MVStore implements AutoCloseable {
/**
/**
* Remove map by name.
* Remove map by name.
*
*
* @param name the map name
* @param name the map name
*/
*/
public
void
removeMap
(
String
name
)
{
public
void
removeMap
(
String
name
)
{
...
@@ -2963,6 +2963,14 @@ public class MVStore implements AutoCloseable {
...
@@ -2963,6 +2963,14 @@ public class MVStore implements AutoCloseable {
return
txCounter
;
return
txCounter
;
}
}
/**
* De-register (close) completed operation (transaction).
* This will decrement usage counter for the corresponding version.
* If counter reaches zero, that version (and all unused after it)
* can be dropped immediately.
*
* @param txCounter to be decremented, obtained from registerVersionUsage()
*/
public
void
deregisterVersionUsage
(
TxCounter
txCounter
)
{
public
void
deregisterVersionUsage
(
TxCounter
txCounter
)
{
if
(
txCounter
!=
null
)
{
if
(
txCounter
!=
null
)
{
if
(
txCounter
.
counter
.
decrementAndGet
()
<=
0
)
{
if
(
txCounter
.
counter
.
decrementAndGet
()
<=
0
)
{
...
@@ -3001,7 +3009,14 @@ public class MVStore implements AutoCloseable {
...
@@ -3001,7 +3009,14 @@ public class MVStore implements AutoCloseable {
* which are still operating on this version.
* which are still operating on this version.
*/
*/
public
static
final
class
TxCounter
{
public
static
final
class
TxCounter
{
/**
* Version of a store, this TxCounter is related to
*/
public
final
long
version
;
public
final
long
version
;
/**
* Counter of outstanding operation on this version of a store
*/
public
final
AtomicInteger
counter
=
new
AtomicInteger
();
public
final
AtomicInteger
counter
=
new
AtomicInteger
();
TxCounter
(
long
version
)
{
TxCounter
(
long
version
)
{
...
...
h2/src/main/org/h2/mvstore/Page.java
浏览文件 @
2a2433e1
...
@@ -518,6 +518,14 @@ public abstract class Page implements Cloneable
...
@@ -518,6 +518,14 @@ public abstract class Page implements Cloneable
return
bKeys
;
return
bKeys
;
}
}
/**
* Append additional key/value mappings to this Page.
* New mappings suppose to be in correct key order.
*
* @param extraKeyCount number of mappings to be added
* @param extraKeys to be added
* @param extraValues to be added
*/
abstract
void
expand
(
int
extraKeyCount
,
Object
[]
extraKeys
,
Object
[]
extraValues
);
abstract
void
expand
(
int
extraKeyCount
,
Object
[]
extraKeys
,
Object
[]
extraValues
);
/**
/**
...
@@ -911,6 +919,12 @@ public abstract class Page implements Cloneable
...
@@ -911,6 +919,12 @@ public abstract class Page implements Cloneable
}
}
}
}
/**
* Update given CursorPos chain to correspond to "append point" in a B-tree rooted at this Page.
*
* @param cursorPos to update, presumably pointing to this Page
* @return new head of the CursorPos chain
*/
public
abstract
CursorPos
getAppendCursorPos
(
CursorPos
cursorPos
);
public
abstract
CursorPos
getAppendCursorPos
(
CursorPos
cursorPos
);
/**
/**
...
@@ -984,6 +998,11 @@ public abstract class Page implements Cloneable
...
@@ -984,6 +998,11 @@ public abstract class Page implements Cloneable
return
page
;
return
page
;
}
}
/**
* Clear if necessary, reference to the actual child Page object,
* so it can be garbage collected if not actively used elsewhere.
* Reference is cleared only if corresponding page was already saved on a disk.
*/
void
clearPageReference
()
{
void
clearPageReference
()
{
if
(
page
!=
null
)
{
if
(
page
!=
null
)
{
page
.
writeEnd
();
page
.
writeEnd
();
...
...
h2/src/main/org/h2/mvstore/tx/Transaction.java
浏览文件 @
2a2433e1
...
@@ -231,6 +231,11 @@ public class Transaction {
...
@@ -231,6 +231,11 @@ public class Transaction {
}
}
}
}
/**
* Determine if any database changes were made as part of this transaction.
*
* @return true if there are changes to commit, false otherwise
*/
public
boolean
hasChanges
()
{
public
boolean
hasChanges
()
{
return
hasChanges
(
statusAndLogId
.
get
());
return
hasChanges
(
statusAndLogId
.
get
());
}
}
...
@@ -259,11 +264,17 @@ public class Transaction {
...
@@ -259,11 +264,17 @@ public class Transaction {
return
getLogId
();
return
getLogId
();
}
}
/**
* Mark an entry into a new SQL statement execution within this transaction.
*/
public
void
markStatementStart
()
{
public
void
markStatementStart
()
{
markStatementEnd
();
markStatementEnd
();
txCounter
=
store
.
store
.
registerVersionUsage
();
txCounter
=
store
.
store
.
registerVersionUsage
();
}
}
/**
* Mark an exit from SQL statement execution within this transaction.
*/
public
void
markStatementEnd
()
{
public
void
markStatementEnd
()
{
MVStore
.
TxCounter
counter
=
txCounter
;
MVStore
.
TxCounter
counter
=
txCounter
;
if
(
counter
!=
null
)
{
if
(
counter
!=
null
)
{
...
@@ -278,6 +289,8 @@ public class Transaction {
...
@@ -278,6 +289,8 @@ public class Transaction {
* @param mapId the map id
* @param mapId the map id
* @param key the key
* @param key the key
* @param oldValue the old value
* @param oldValue the old value
*
* @return key for the newly added undo log entry
*/
*/
long
log
(
int
mapId
,
Object
key
,
VersionedValue
oldValue
)
{
long
log
(
int
mapId
,
Object
key
,
VersionedValue
oldValue
)
{
long
currentState
=
statusAndLogId
.
getAndIncrement
();
long
currentState
=
statusAndLogId
.
getAndIncrement
();
...
@@ -487,6 +500,9 @@ public class Transaction {
...
@@ -487,6 +500,9 @@ public class Transaction {
}
}
}
}
/**
* Transition this transaction into a closed state.
*/
void
closeIt
()
{
void
closeIt
()
{
long
lastState
=
setStatus
(
STATUS_CLOSED
);
long
lastState
=
setStatus
(
STATUS_CLOSED
);
store
.
store
.
deregisterVersionUsage
(
txCounter
);
store
.
store
.
deregisterVersionUsage
(
txCounter
);
...
@@ -499,6 +515,15 @@ public class Transaction {
...
@@ -499,6 +515,15 @@ public class Transaction {
notifyAll
();
notifyAll
();
}
}
/**
* Make this transaction to wait for the specified transaction to be closed,
* because both of them try to modify the same map entry.
*
* @param toWaitFor transaction to wait for
* @param map containing blocking entry
* @param key of the blocking entry
* @return true if other transaction was closed and this one can proceed, false if timed out
*/
public
boolean
waitFor
(
Transaction
toWaitFor
,
MVMap
<?,
VersionedValue
>
map
,
Object
key
)
{
public
boolean
waitFor
(
Transaction
toWaitFor
,
MVMap
<?,
VersionedValue
>
map
,
Object
key
)
{
blockingTransaction
=
toWaitFor
;
blockingTransaction
=
toWaitFor
;
blockingMap
=
map
;
blockingMap
=
map
;
...
...
h2/src/main/org/h2/mvstore/tx/TransactionStore.java
浏览文件 @
2a2433e1
...
@@ -102,6 +102,17 @@ public class TransactionStore {
...
@@ -102,6 +102,17 @@ public class TransactionStore {
private
static
final
int
MAX_OPEN_TRANSACTIONS
=
65535
;
private
static
final
int
MAX_OPEN_TRANSACTIONS
=
65535
;
/**
* Generate a string used to name undo log map for a specific transaction.
* This name will contain transaction id and reflect the fact
* whether transaction is logically committed or not.
* This information might be used by recovery procedure after unclean shutdown
* (termination before transaction is fully committed).
*
* @param committed true if transaction is logically committed, false otherwise
* @param transactionId of the corresponding transaction
* @return undo log name
*/
public
static
String
getUndoLogName
(
boolean
committed
,
int
transactionId
)
{
public
static
String
getUndoLogName
(
boolean
committed
,
int
transactionId
)
{
return
UNDO_LOG_NAME_PREFIX
+
return
UNDO_LOG_NAME_PREFIX
+
(
committed
?
UNDO_LOG_COMMITTED
:
UNDO_LOG_OPEN
)
+
(
committed
?
UNDO_LOG_COMMITTED
:
UNDO_LOG_OPEN
)
+
...
...
h2/src/main/org/h2/mvstore/tx/TxDecisionMaker.java
浏览文件 @
2a2433e1
...
@@ -9,17 +9,42 @@ import org.h2.mvstore.MVMap;
...
@@ -9,17 +9,42 @@ import org.h2.mvstore.MVMap;
import
org.h2.value.VersionedValue
;
import
org.h2.value.VersionedValue
;
/**
/**
* Class TxDecisionMaker.
* Class TxDecisionMaker is a base implementation of MVMap.DecisionMaker
* to be used for TransactionMap modification.
*
*
* @author <a href='mailto:andrei.tokar@gmail.com'>Andrei Tokar</a>
* @author <a href='mailto:andrei.tokar@gmail.com'>Andrei Tokar</a>
*/
*/
abstract
class
TxDecisionMaker
extends
MVMap
.
DecisionMaker
<
VersionedValue
>
{
abstract
class
TxDecisionMaker
extends
MVMap
.
DecisionMaker
<
VersionedValue
>
{
/**
* Map to decide upon
*/
private
final
int
mapId
;
private
final
int
mapId
;
/**
* Key for the map entry to decide upon
*/
private
final
Object
key
;
private
final
Object
key
;
/**
* Value for the map entry
*/
final
Object
value
;
final
Object
value
;
/**
* Transaction we are operating within
*/
private
final
Transaction
transaction
;
private
final
Transaction
transaction
;
/**
* Id for the undo log entry created for this modification
*/
long
undoKey
;
long
undoKey
;
protected
long
lastOperationId
;
/**
* Id of the last operation, we decided to {@link MVMap.Decision.REPEAT}.
*/
private
long
lastOperationId
;
private
Transaction
blockingTransaction
;
private
Transaction
blockingTransaction
;
private
MVMap
.
Decision
decision
;
private
MVMap
.
Decision
decision
;
...
@@ -56,7 +81,7 @@ abstract class TxDecisionMaker extends MVMap.DecisionMaker<VersionedValue> {
...
@@ -56,7 +81,7 @@ abstract class TxDecisionMaker extends MVMap.DecisionMaker<VersionedValue> {
// transaction is not committed yet
// transaction is not committed yet
// should wait on blockingTransaction that was determined earlier
// should wait on blockingTransaction that was determined earlier
decision
=
MVMap
.
Decision
.
ABORT
;
decision
=
MVMap
.
Decision
.
ABORT
;
}
else
if
(
i
d
==
lastOperationId
)
{
}
else
if
(
i
sRepeatedOperation
(
id
)
)
{
// There is no transaction with that id, and we've tried it just
// There is no transaction with that id, and we've tried it just
// before, but map root has not changed (which must be the case if
// before, but map root has not changed (which must be the case if
// we just missed a closed transaction), therefore we came back here
// we just missed a closed transaction), therefore we came back here
...
@@ -72,7 +97,6 @@ abstract class TxDecisionMaker extends MVMap.DecisionMaker<VersionedValue> {
...
@@ -72,7 +97,6 @@ abstract class TxDecisionMaker extends MVMap.DecisionMaker<VersionedValue> {
// we can retry immediately and either that entry become committed
// we can retry immediately and either that entry become committed
// or we'll hit case above
// or we'll hit case above
decision
=
MVMap
.
Decision
.
REPEAT
;
decision
=
MVMap
.
Decision
.
REPEAT
;
lastOperationId
=
id
;
}
}
return
decision
;
return
decision
;
}
}
...
@@ -99,14 +123,33 @@ abstract class TxDecisionMaker extends MVMap.DecisionMaker<VersionedValue> {
...
@@ -99,14 +123,33 @@ abstract class TxDecisionMaker extends MVMap.DecisionMaker<VersionedValue> {
return
blockingTransaction
;
return
blockingTransaction
;
}
}
/**
* Create undo log entry
* @param value previous value to be logged
*/
final
void
logIt
(
VersionedValue
value
)
{
final
void
logIt
(
VersionedValue
value
)
{
undoKey
=
transaction
.
log
(
mapId
,
key
,
value
);
undoKey
=
transaction
.
log
(
mapId
,
key
,
value
);
}
}
/**
* Check whether specified transaction id belongs to "current" transaction
* (transaction we are acting within).
*
* @param transactionId to check
* @return true it it is "current" transaction's id, false otherwise
*/
final
boolean
isThisTransaction
(
int
transactionId
)
{
final
boolean
isThisTransaction
(
int
transactionId
)
{
return
transactionId
==
transaction
.
transactionId
;
return
transactionId
==
transaction
.
transactionId
;
}
}
/**
* Determine whether specified id corresponds to a logically committed transaction.
* In case of pending transaction, reference to actual Transaction object (if any)
* is preserved for future use.
*
* @param transactionId to use
* @return true if transaction should be considered as committed, false otherwise
*/
final
boolean
isCommitted
(
int
transactionId
)
{
final
boolean
isCommitted
(
int
transactionId
)
{
Transaction
blockingTx
;
Transaction
blockingTx
;
boolean
result
;
boolean
result
;
...
@@ -121,8 +164,30 @@ abstract class TxDecisionMaker extends MVMap.DecisionMaker<VersionedValue> {
...
@@ -121,8 +164,30 @@ abstract class TxDecisionMaker extends MVMap.DecisionMaker<VersionedValue> {
return
result
;
return
result
;
}
}
final
MVMap
.
Decision
setDecision
(
MVMap
.
Decision
d
)
{
/**
return
decision
=
d
;
* Store operation id provided, but before that, compare it against last stored one.
* This is to prevent an infinite loop in case of uncommitted "leftover" entry
* (one without a corresponding undo log entry, most likely as a result of unclean shutdown).
*
* @param id for the operation we decided to {@link MVMap.Decision.REPEAT}
* @return true if the same as last operation id, false otherwise
*/
final
boolean
isRepeatedOperation
(
long
id
)
{
if
(
id
==
lastOperationId
)
{
return
true
;
}
lastOperationId
=
id
;
return
false
;
}
/**
* Record for future references specified value as a decision that has been made.
*
* @param decision made
* @return argument provided
*/
final
MVMap
.
Decision
setDecision
(
MVMap
.
Decision
decision
)
{
return
this
.
decision
=
decision
;
}
}
@Override
@Override
...
@@ -184,7 +249,7 @@ abstract class TxDecisionMaker extends MVMap.DecisionMaker<VersionedValue> {
...
@@ -184,7 +249,7 @@ abstract class TxDecisionMaker extends MVMap.DecisionMaker<VersionedValue> {
// should wait on blockingTransaction that was determined
// should wait on blockingTransaction that was determined
// earlier and then try again
// earlier and then try again
return
setDecision
(
MVMap
.
Decision
.
ABORT
);
return
setDecision
(
MVMap
.
Decision
.
ABORT
);
}
else
if
(
i
d
==
lastOperationId
)
{
}
else
if
(
i
sRepeatedOperation
(
id
)
)
{
// There is no transaction with that id, and we've tried it
// There is no transaction with that id, and we've tried it
// just before, but map root has not changed (which must be
// just before, but map root has not changed (which must be
// the case if we just missed a closed transaction),
// the case if we just missed a closed transaction),
...
@@ -203,7 +268,6 @@ abstract class TxDecisionMaker extends MVMap.DecisionMaker<VersionedValue> {
...
@@ -203,7 +268,6 @@ abstract class TxDecisionMaker extends MVMap.DecisionMaker<VersionedValue> {
// transaction has been committed/rolled back and is closed
// transaction has been committed/rolled back and is closed
// by now, so we can retry immediately and either that entry
// by now, so we can retry immediately and either that entry
// become committed or we'll hit case above
// become committed or we'll hit case above
lastOperationId
=
id
;
return
setDecision
(
MVMap
.
Decision
.
REPEAT
);
return
setDecision
(
MVMap
.
Decision
.
REPEAT
);
}
}
}
}
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
2a2433e1
...
@@ -157,7 +157,7 @@ dateadd datediff datepart dates datestyle datetime datetimes datum david davide
...
@@ -157,7 +157,7 @@ dateadd datediff datepart dates datestyle datetime datetimes datum david davide
day daylight dayname dayofmonth dayofweek dayofyear days dba dbbench dbcp dbid
day daylight dayname dayofmonth dayofweek dayofyear days dba dbbench dbcp dbid
dbms dbname dbo dbs dbserv dbsnmp dclassifier dcmpg dcmpl dconst ddiv ddl
dbms dbname dbo dbs dbserv dbsnmp dclassifier dcmpg dcmpl dconst ddiv ddl
ddladmin deactivate deactivated deactivation dead deadlock deadlocked deadlocks
ddladmin deactivate deactivated deactivation dead deadlock deadlocked deadlocks
deal dealing deallocate death debug debugging dec decade december decide decimal
deal dealing deallocate death debug debugging dec decade december decide deci
ded deci
mal
decision deck declaration declarations declarative declaratory declare declared
decision deck declaration declarations declarative declaratory declare declared
declaring decode decoded decoder decodes decoding decompile decompiler decompiles
declaring decode decoded decoder decodes decoding decompile decompiler decompiles
decompiling decompress decompressed decompresser decompression decoration
decompiling decompress decompressed decompresser decompression decoration
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论