提交 85637dc3 authored 作者: sugnkeunkim's avatar sugnkeunkim

fix #499

上级 daa175aa
......@@ -350,8 +350,12 @@ public class TransactionStore {
if (value == null) {
// nothing to do
} else if (value.value == null) {
int tx = getTransactionId(value.operationId);
if (tx == t.transactionId) {
// remove the value
// only if it's transaction id is same as current transaction id
map.remove(key);
}
} else {
VersionedValue v2 = new VersionedValue();
v2.value = value.value;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论