Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
7740acbb
提交
7740acbb
authored
3月 16, 2013
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MVStore: support transactions (WIP)
上级
b6487f6d
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
109 行增加
和
26 行删除
+109
-26
Session.java
h2/src/main/org/h2/engine/Session.java
+10
-0
MVStore.java
h2/src/main/org/h2/mvstore/MVStore.java
+1
-0
TransactionStore.java
h2/src/main/org/h2/mvstore/TransactionStore.java
+22
-1
MVPrimaryIndex.java
h2/src/main/org/h2/mvstore/db/MVPrimaryIndex.java
+17
-0
MVSecondaryIndex.java
h2/src/main/org/h2/mvstore/db/MVSecondaryIndex.java
+17
-2
MVTable.java
h2/src/main/org/h2/mvstore/db/MVTable.java
+11
-15
MVTableEngine.java
h2/src/main/org/h2/mvstore/db/MVTableEngine.java
+12
-1
TestTransactionStore.java
h2/src/test/org/h2/test/store/TestTransactionStore.java
+19
-7
没有找到文件。
h2/src/main/org/h2/engine/Session.java
浏览文件 @
7740acbb
...
@@ -23,6 +23,8 @@ import org.h2.jdbc.JdbcConnection;
...
@@ -23,6 +23,8 @@ import org.h2.jdbc.JdbcConnection;
import
org.h2.message.DbException
;
import
org.h2.message.DbException
;
import
org.h2.message.Trace
;
import
org.h2.message.Trace
;
import
org.h2.message.TraceSystem
;
import
org.h2.message.TraceSystem
;
import
org.h2.mvstore.TransactionStore
;
import
org.h2.mvstore.TransactionStore.Transaction
;
import
org.h2.result.ResultInterface
;
import
org.h2.result.ResultInterface
;
import
org.h2.result.Row
;
import
org.h2.result.Row
;
import
org.h2.schema.Schema
;
import
org.h2.schema.Schema
;
...
@@ -102,6 +104,7 @@ public class Session extends SessionWithState {
...
@@ -102,6 +104,7 @@ public class Session extends SessionWithState {
private
int
objectId
;
private
int
objectId
;
private
final
int
queryCacheSize
;
private
final
int
queryCacheSize
;
private
SmallLRUCache
<
String
,
Command
>
queryCache
;
private
SmallLRUCache
<
String
,
Command
>
queryCache
;
private
Transaction
transaction
;
public
Session
(
Database
database
,
User
user
,
int
id
)
{
public
Session
(
Database
database
,
User
user
,
int
id
)
{
this
.
database
=
database
;
this
.
database
=
database
;
...
@@ -1231,4 +1234,11 @@ public class Session extends SessionWithState {
...
@@ -1231,4 +1234,11 @@ public class Session extends SessionWithState {
return
redoLogBinary
;
return
redoLogBinary
;
}
}
public
Transaction
getTransaction
(
TransactionStore
store
)
{
if
(
transaction
==
null
)
{
transaction
=
store
.
begin
();
}
return
transaction
;
}
}
}
h2/src/main/org/h2/mvstore/MVStore.java
浏览文件 @
7740acbb
...
@@ -96,6 +96,7 @@ TODO:
...
@@ -96,6 +96,7 @@ TODO:
-- use a transaction log where only the deltas are stored
-- use a transaction log where only the deltas are stored
- serialization for lists, sets, sets, sorted sets, maps, sorted maps
- serialization for lists, sets, sets, sorted sets, maps, sorted maps
- maybe rename 'rollback' to 'revert'
- maybe rename 'rollback' to 'revert'
- support other compression algorithms (deflate,...)
*/
*/
...
...
h2/src/main/org/h2/mvstore/TransactionStore.java
浏览文件 @
7740acbb
...
@@ -11,6 +11,7 @@ import java.util.HashMap;
...
@@ -11,6 +11,7 @@ import java.util.HashMap;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Map
;
import
org.h2.mvstore.MVMap.Builder
;
import
org.h2.util.New
;
import
org.h2.util.New
;
/**
/**
...
@@ -616,7 +617,22 @@ public class TransactionStore {
...
@@ -616,7 +617,22 @@ public class TransactionStore {
if
(
onlyIfUnchanged
)
{
if
(
onlyIfUnchanged
)
{
Object
[]
old
=
m
.
get
(
key
);
Object
[]
old
=
m
.
get
(
key
);
if
(!
mapWrite
.
areValuesEqual
(
old
,
current
))
{
if
(!
mapWrite
.
areValuesEqual
(
old
,
current
))
{
return
false
;
long
tx
=
(
Long
)
current
[
0
];
if
(
tx
==
transaction
.
transactionId
)
{
if
(
value
==
null
)
{
// ignore removing an entry
// if it was added or changed
// in the same statement
return
true
;
}
else
if
(
current
[
2
]
==
null
)
{
// add an entry that was removed
// in the same statement
}
else
{
return
false
;
}
}
else
{
return
false
;
}
}
}
}
}
long
oldVersion
=
transaction
.
store
.
store
.
getCurrentVersion
()
-
1
;
long
oldVersion
=
transaction
.
store
.
store
.
getCurrentVersion
()
-
1
;
...
@@ -739,5 +755,10 @@ public class TransactionStore {
...
@@ -739,5 +755,10 @@ public class TransactionStore {
}
}
}
}
public
<
A
,
B
>
MVMap
<
A
,
B
>
openMap
(
String
name
,
Builder
<
A
,
B
>
builder
)
{
int
todo
;
return
store
.
openMap
(
name
,
builder
);
}
}
}
h2/src/main/org/h2/mvstore/db/MVPrimaryIndex.java
浏览文件 @
7740acbb
...
@@ -58,6 +58,7 @@ public class MVPrimaryIndex extends BaseIndex {
...
@@ -58,6 +58,7 @@ public class MVPrimaryIndex extends BaseIndex {
* @param newName the new name
* @param newName the new name
*/
*/
public
void
renameTable
(
String
newName
)
{
public
void
renameTable
(
String
newName
)
{
MVMap
<
Long
,
Value
[]>
map
=
getMap
(
null
);
rename
(
newName
+
"_DATA"
);
rename
(
newName
+
"_DATA"
);
map
.
renameMap
(
newName
+
"_DATA_"
+
getId
());
map
.
renameMap
(
newName
+
"_DATA_"
+
getId
());
}
}
...
@@ -97,6 +98,7 @@ public class MVPrimaryIndex extends BaseIndex {
...
@@ -97,6 +98,7 @@ public class MVPrimaryIndex extends BaseIndex {
for
(
int
i
=
0
;
i
<
array
.
length
;
i
++)
{
for
(
int
i
=
0
;
i
<
array
.
length
;
i
++)
{
array
[
i
]
=
row
.
getValue
(
i
);
array
[
i
]
=
row
.
getValue
(
i
);
}
}
MVMap
<
Long
,
Value
[]>
map
=
getMap
(
session
);
if
(
map
.
containsKey
(
row
.
getKey
()))
{
if
(
map
.
containsKey
(
row
.
getKey
()))
{
String
sql
=
"PRIMARY KEY ON "
+
table
.
getSQL
();
String
sql
=
"PRIMARY KEY ON "
+
table
.
getSQL
();
if
(
mainIndexColumn
>=
0
&&
mainIndexColumn
<
indexColumns
.
length
)
{
if
(
mainIndexColumn
>=
0
&&
mainIndexColumn
<
indexColumns
.
length
)
{
...
@@ -112,6 +114,7 @@ public class MVPrimaryIndex extends BaseIndex {
...
@@ -112,6 +114,7 @@ public class MVPrimaryIndex extends BaseIndex {
@Override
@Override
public
void
remove
(
Session
session
,
Row
row
)
{
public
void
remove
(
Session
session
,
Row
row
)
{
MVMap
<
Long
,
Value
[]>
map
=
getMap
(
session
);
Value
[]
old
=
map
.
remove
(
row
.
getKey
());
Value
[]
old
=
map
.
remove
(
row
.
getKey
());
if
(
old
==
null
)
{
if
(
old
==
null
)
{
throw
DbException
.
get
(
ErrorCode
.
ROW_NOT_FOUND_WHEN_DELETING_1
,
throw
DbException
.
get
(
ErrorCode
.
ROW_NOT_FOUND_WHEN_DELETING_1
,
...
@@ -142,6 +145,7 @@ public class MVPrimaryIndex extends BaseIndex {
...
@@ -142,6 +145,7 @@ public class MVPrimaryIndex extends BaseIndex {
max
=
v
.
getLong
();
max
=
v
.
getLong
();
}
}
}
}
MVMap
<
Long
,
Value
[]>
map
=
getMap
(
session
);
return
new
MVStoreCursor
(
session
,
map
.
keyIterator
(
min
),
max
);
return
new
MVStoreCursor
(
session
,
map
.
keyIterator
(
min
),
max
);
}
}
...
@@ -150,6 +154,7 @@ public class MVPrimaryIndex extends BaseIndex {
...
@@ -150,6 +154,7 @@ public class MVPrimaryIndex extends BaseIndex {
}
}
public
Row
getRow
(
Session
session
,
long
key
)
{
public
Row
getRow
(
Session
session
,
long
key
)
{
MVMap
<
Long
,
Value
[]>
map
=
getMap
(
session
);
Value
[]
array
=
map
.
get
(
key
);
Value
[]
array
=
map
.
get
(
key
);
Row
row
=
new
Row
(
array
,
0
);
Row
row
=
new
Row
(
array
,
0
);
row
.
setKey
(
key
);
row
.
setKey
(
key
);
...
@@ -158,6 +163,7 @@ public class MVPrimaryIndex extends BaseIndex {
...
@@ -158,6 +163,7 @@ public class MVPrimaryIndex extends BaseIndex {
@Override
@Override
public
double
getCost
(
Session
session
,
int
[]
masks
)
{
public
double
getCost
(
Session
session
,
int
[]
masks
)
{
MVMap
<
Long
,
Value
[]>
map
=
getMap
(
session
);
long
cost
=
10
*
(
map
.
getSize
()
+
Constants
.
COST_ROW_OFFSET
);
long
cost
=
10
*
(
map
.
getSize
()
+
Constants
.
COST_ROW_OFFSET
);
return
cost
;
return
cost
;
}
}
...
@@ -170,6 +176,7 @@ public class MVPrimaryIndex extends BaseIndex {
...
@@ -170,6 +176,7 @@ public class MVPrimaryIndex extends BaseIndex {
@Override
@Override
public
void
remove
(
Session
session
)
{
public
void
remove
(
Session
session
)
{
MVMap
<
Long
,
Value
[]>
map
=
getMap
(
session
);
if
(!
map
.
isClosed
())
{
if
(!
map
.
isClosed
())
{
map
.
removeMap
();
map
.
removeMap
();
}
}
...
@@ -177,6 +184,7 @@ public class MVPrimaryIndex extends BaseIndex {
...
@@ -177,6 +184,7 @@ public class MVPrimaryIndex extends BaseIndex {
@Override
@Override
public
void
truncate
(
Session
session
)
{
public
void
truncate
(
Session
session
)
{
MVMap
<
Long
,
Value
[]>
map
=
getMap
(
session
);
if
(
mvTable
.
getContainsLargeObject
())
{
if
(
mvTable
.
getContainsLargeObject
())
{
database
.
getLobStorage
().
removeAllForTable
(
table
.
getId
());
database
.
getLobStorage
().
removeAllForTable
(
table
.
getId
());
}
}
...
@@ -190,6 +198,7 @@ public class MVPrimaryIndex extends BaseIndex {
...
@@ -190,6 +198,7 @@ public class MVPrimaryIndex extends BaseIndex {
@Override
@Override
public
Cursor
findFirstOrLast
(
Session
session
,
boolean
first
)
{
public
Cursor
findFirstOrLast
(
Session
session
,
boolean
first
)
{
MVMap
<
Long
,
Value
[]>
map
=
getMap
(
session
);
if
(
map
.
getSize
()
==
0
)
{
if
(
map
.
getSize
()
==
0
)
{
return
new
MVStoreCursor
(
session
,
Collections
.<
Long
>
emptyList
().
iterator
(),
0
);
return
new
MVStoreCursor
(
session
,
Collections
.<
Long
>
emptyList
().
iterator
(),
0
);
}
}
...
@@ -206,11 +215,13 @@ public class MVPrimaryIndex extends BaseIndex {
...
@@ -206,11 +215,13 @@ public class MVPrimaryIndex extends BaseIndex {
@Override
@Override
public
long
getRowCount
(
Session
session
)
{
public
long
getRowCount
(
Session
session
)
{
MVMap
<
Long
,
Value
[]>
map
=
getMap
(
session
);
return
map
.
getSize
();
return
map
.
getSize
();
}
}
@Override
@Override
public
long
getRowCountApproximation
()
{
public
long
getRowCountApproximation
()
{
MVMap
<
Long
,
Value
[]>
map
=
getMap
(
null
);
return
map
.
getSize
();
return
map
.
getSize
();
}
}
...
@@ -254,6 +265,7 @@ public class MVPrimaryIndex extends BaseIndex {
...
@@ -254,6 +265,7 @@ public class MVPrimaryIndex extends BaseIndex {
* @return the cursor
* @return the cursor
*/
*/
Cursor
find
(
Session
session
,
long
first
,
long
last
)
{
Cursor
find
(
Session
session
,
long
first
,
long
last
)
{
MVMap
<
Long
,
Value
[]>
map
=
getMap
(
session
);
return
new
MVStoreCursor
(
session
,
map
.
keyIterator
(
first
),
last
);
return
new
MVStoreCursor
(
session
,
map
.
keyIterator
(
first
),
last
);
}
}
...
@@ -310,5 +322,10 @@ public class MVPrimaryIndex extends BaseIndex {
...
@@ -310,5 +322,10 @@ public class MVPrimaryIndex extends BaseIndex {
public
boolean
isRowIdIndex
()
{
public
boolean
isRowIdIndex
()
{
return
true
;
return
true
;
}
}
MVMap
<
Long
,
Value
[]>
getMap
(
Session
session
)
{
// return mvTable.getTransaction(session).openMap(name)
return
map
;
}
}
}
h2/src/main/org/h2/mvstore/db/MVSecondaryIndex.java
浏览文件 @
7740acbb
...
@@ -38,7 +38,7 @@ public class MVSecondaryIndex extends BaseIndex {
...
@@ -38,7 +38,7 @@ public class MVSecondaryIndex extends BaseIndex {
final
MVTable
mvTable
;
final
MVTable
mvTable
;
private
final
int
keyColumns
;
private
final
int
keyColumns
;
private
MVMap
<
Value
[],
Long
>
map
;
private
MVMap
<
Value
[],
Long
>
map
2
;
public
MVSecondaryIndex
(
Database
db
,
MVTable
table
,
int
id
,
String
indexName
,
public
MVSecondaryIndex
(
Database
db
,
MVTable
table
,
int
id
,
String
indexName
,
IndexColumn
[]
columns
,
IndexType
indexType
)
{
IndexColumn
[]
columns
,
IndexType
indexType
)
{
...
@@ -58,7 +58,7 @@ public class MVSecondaryIndex extends BaseIndex {
...
@@ -58,7 +58,7 @@ public class MVSecondaryIndex extends BaseIndex {
String
name
=
getName
()
+
"_"
+
getId
();
String
name
=
getName
()
+
"_"
+
getId
();
ValueArrayDataType
t
=
new
ValueArrayDataType
(
ValueArrayDataType
t
=
new
ValueArrayDataType
(
db
.
getCompareMode
(),
db
,
sortTypes
);
db
.
getCompareMode
(),
db
,
sortTypes
);
map
=
table
.
getStore
().
openMap
(
name
,
map
2
=
table
.
getStore
().
openMap
(
name
,
new
MVMap
.
Builder
<
Value
[],
Long
>().
keyType
(
t
));
new
MVMap
.
Builder
<
Value
[],
Long
>().
keyType
(
t
));
}
}
...
@@ -78,12 +78,14 @@ public class MVSecondaryIndex extends BaseIndex {
...
@@ -78,12 +78,14 @@ public class MVSecondaryIndex extends BaseIndex {
}
}
public
void
rename
(
String
newName
)
{
public
void
rename
(
String
newName
)
{
MVMap
<
Value
[],
Long
>
map
=
getMap
(
null
);
map
.
renameMap
(
newName
+
"_"
+
getId
());
map
.
renameMap
(
newName
+
"_"
+
getId
());
super
.
rename
(
newName
);
super
.
rename
(
newName
);
}
}
@Override
@Override
public
void
add
(
Session
session
,
Row
row
)
{
public
void
add
(
Session
session
,
Row
row
)
{
MVMap
<
Value
[],
Long
>
map
=
getMap
(
session
);
Value
[]
array
=
getKey
(
row
);
Value
[]
array
=
getKey
(
row
);
if
(
indexType
.
isUnique
())
{
if
(
indexType
.
isUnique
())
{
array
[
keyColumns
-
1
]
=
ValueLong
.
get
(
0
);
array
[
keyColumns
-
1
]
=
ValueLong
.
get
(
0
);
...
@@ -104,6 +106,7 @@ public class MVSecondaryIndex extends BaseIndex {
...
@@ -104,6 +106,7 @@ public class MVSecondaryIndex extends BaseIndex {
@Override
@Override
public
void
remove
(
Session
session
,
Row
row
)
{
public
void
remove
(
Session
session
,
Row
row
)
{
Value
[]
array
=
getKey
(
row
);
Value
[]
array
=
getKey
(
row
);
MVMap
<
Value
[],
Long
>
map
=
getMap
(
session
);
Long
old
=
map
.
remove
(
array
);
Long
old
=
map
.
remove
(
array
);
if
(
old
==
null
)
{
if
(
old
==
null
)
{
if
(
old
==
null
)
{
if
(
old
==
null
)
{
...
@@ -116,6 +119,7 @@ public class MVSecondaryIndex extends BaseIndex {
...
@@ -116,6 +119,7 @@ public class MVSecondaryIndex extends BaseIndex {
@Override
@Override
public
Cursor
find
(
Session
session
,
SearchRow
first
,
SearchRow
last
)
{
public
Cursor
find
(
Session
session
,
SearchRow
first
,
SearchRow
last
)
{
Value
[]
min
=
getKey
(
first
);
Value
[]
min
=
getKey
(
first
);
MVMap
<
Value
[],
Long
>
map
=
getMap
(
session
);
return
new
MVStoreCursor
(
session
,
map
.
keyIterator
(
min
),
last
);
return
new
MVStoreCursor
(
session
,
map
.
keyIterator
(
min
),
last
);
}
}
...
@@ -160,11 +164,13 @@ public class MVSecondaryIndex extends BaseIndex {
...
@@ -160,11 +164,13 @@ public class MVSecondaryIndex extends BaseIndex {
@Override
@Override
public
double
getCost
(
Session
session
,
int
[]
masks
)
{
public
double
getCost
(
Session
session
,
int
[]
masks
)
{
MVMap
<
Value
[],
Long
>
map
=
getMap
(
session
);
return
10
*
getCostRangeIndex
(
masks
,
map
.
getSize
());
return
10
*
getCostRangeIndex
(
masks
,
map
.
getSize
());
}
}
@Override
@Override
public
void
remove
(
Session
session
)
{
public
void
remove
(
Session
session
)
{
MVMap
<
Value
[],
Long
>
map
=
getMap
(
session
);
if
(!
map
.
isClosed
())
{
if
(!
map
.
isClosed
())
{
map
.
removeMap
();
map
.
removeMap
();
}
}
...
@@ -172,6 +178,7 @@ public class MVSecondaryIndex extends BaseIndex {
...
@@ -172,6 +178,7 @@ public class MVSecondaryIndex extends BaseIndex {
@Override
@Override
public
void
truncate
(
Session
session
)
{
public
void
truncate
(
Session
session
)
{
MVMap
<
Value
[],
Long
>
map
=
getMap
(
session
);
map
.
clear
();
map
.
clear
();
}
}
...
@@ -182,6 +189,7 @@ public class MVSecondaryIndex extends BaseIndex {
...
@@ -182,6 +189,7 @@ public class MVSecondaryIndex extends BaseIndex {
@Override
@Override
public
Cursor
findFirstOrLast
(
Session
session
,
boolean
first
)
{
public
Cursor
findFirstOrLast
(
Session
session
,
boolean
first
)
{
MVMap
<
Value
[],
Long
>
map
=
getMap
(
session
);
Value
[]
key
=
first
?
map
.
firstKey
()
:
map
.
lastKey
();
Value
[]
key
=
first
?
map
.
firstKey
()
:
map
.
lastKey
();
while
(
true
)
{
while
(
true
)
{
if
(
key
==
null
)
{
if
(
key
==
null
)
{
...
@@ -201,16 +209,19 @@ public class MVSecondaryIndex extends BaseIndex {
...
@@ -201,16 +209,19 @@ public class MVSecondaryIndex extends BaseIndex {
@Override
@Override
public
boolean
needRebuild
()
{
public
boolean
needRebuild
()
{
MVMap
<
Value
[],
Long
>
map
=
getMap
(
null
);
return
map
.
getSize
()
==
0
;
return
map
.
getSize
()
==
0
;
}
}
@Override
@Override
public
long
getRowCount
(
Session
session
)
{
public
long
getRowCount
(
Session
session
)
{
MVMap
<
Value
[],
Long
>
map
=
getMap
(
session
);
return
map
.
getSize
();
return
map
.
getSize
();
}
}
@Override
@Override
public
long
getRowCountApproximation
()
{
public
long
getRowCountApproximation
()
{
MVMap
<
Value
[],
Long
>
map
=
getMap
(
null
);
return
map
.
getSize
();
return
map
.
getSize
();
}
}
...
@@ -284,5 +295,9 @@ public class MVSecondaryIndex extends BaseIndex {
...
@@ -284,5 +295,9 @@ public class MVSecondaryIndex extends BaseIndex {
}
}
}
}
MVMap
<
Value
[],
Long
>
getMap
(
Session
session
)
{
return
map2
;
}
}
}
h2/src/main/org/h2/mvstore/db/MVTable.java
浏览文件 @
7740acbb
...
@@ -11,6 +11,7 @@ import java.util.Collections;
...
@@ -11,6 +11,7 @@ import java.util.Collections;
import
java.util.Comparator
;
import
java.util.Comparator
;
import
java.util.HashSet
;
import
java.util.HashSet
;
import
java.util.Set
;
import
java.util.Set
;
import
org.h2.api.DatabaseEventListener
;
import
org.h2.api.DatabaseEventListener
;
import
org.h2.command.ddl.Analyze
;
import
org.h2.command.ddl.Analyze
;
import
org.h2.command.ddl.CreateTableData
;
import
org.h2.command.ddl.CreateTableData
;
...
@@ -27,7 +28,8 @@ import org.h2.index.IndexType;
...
@@ -27,7 +28,8 @@ import org.h2.index.IndexType;
import
org.h2.index.MultiVersionIndex
;
import
org.h2.index.MultiVersionIndex
;
import
org.h2.message.DbException
;
import
org.h2.message.DbException
;
import
org.h2.message.Trace
;
import
org.h2.message.Trace
;
import
org.h2.mvstore.MVStore
;
import
org.h2.mvstore.TransactionStore
;
import
org.h2.mvstore.TransactionStore.Transaction
;
import
org.h2.result.Row
;
import
org.h2.result.Row
;
import
org.h2.result.SortOrder
;
import
org.h2.result.SortOrder
;
import
org.h2.schema.SchemaObject
;
import
org.h2.schema.SchemaObject
;
...
@@ -47,7 +49,7 @@ import org.h2.value.Value;
...
@@ -47,7 +49,7 @@ import org.h2.value.Value;
public
class
MVTable
extends
TableBase
{
public
class
MVTable
extends
TableBase
{
private
final
String
storeName
;
private
final
String
storeName
;
private
final
MV
Store
store
;
private
final
Transaction
Store
store
;
private
MVPrimaryIndex
primaryIndex
;
private
MVPrimaryIndex
primaryIndex
;
private
ArrayList
<
Index
>
indexes
=
New
.
arrayList
();
private
ArrayList
<
Index
>
indexes
=
New
.
arrayList
();
private
long
lastModificationId
;
private
long
lastModificationId
;
...
@@ -67,7 +69,7 @@ public class MVTable extends TableBase {
...
@@ -67,7 +69,7 @@ public class MVTable extends TableBase {
*/
*/
private
boolean
waitForLock
;
private
boolean
waitForLock
;
public
MVTable
(
CreateTableData
data
,
String
storeName
,
MV
Store
store
)
{
public
MVTable
(
CreateTableData
data
,
String
storeName
,
Transaction
Store
store
)
{
super
(
data
);
super
(
data
);
nextAnalyze
=
database
.
getSettings
().
analyzeAuto
;
nextAnalyze
=
database
.
getSettings
().
analyzeAuto
;
this
.
storeName
=
storeName
;
this
.
storeName
=
storeName
;
...
@@ -468,7 +470,7 @@ public class MVTable extends TableBase {
...
@@ -468,7 +470,7 @@ public class MVTable extends TableBase {
return
first
.
column
.
getColumnId
();
return
first
.
column
.
getColumnId
();
}
}
private
void
addRowsToIndex
(
Session
session
,
ArrayList
<
Row
>
list
,
Index
index
)
{
private
static
void
addRowsToIndex
(
Session
session
,
ArrayList
<
Row
>
list
,
Index
index
)
{
final
Index
idx
=
index
;
final
Index
idx
=
index
;
Collections
.
sort
(
list
,
new
Comparator
<
Row
>()
{
Collections
.
sort
(
list
,
new
Comparator
<
Row
>()
{
public
int
compare
(
Row
r1
,
Row
r2
)
{
public
int
compare
(
Row
r1
,
Row
r2
)
{
...
@@ -479,7 +481,6 @@ public class MVTable extends TableBase {
...
@@ -479,7 +481,6 @@ public class MVTable extends TableBase {
index
.
add
(
session
,
row
);
index
.
add
(
session
,
row
);
}
}
list
.
clear
();
list
.
clear
();
storeIfRequired
();
}
}
@Override
@Override
...
@@ -508,7 +509,6 @@ public class MVTable extends TableBase {
...
@@ -508,7 +509,6 @@ public class MVTable extends TableBase {
throw
DbException
.
convert
(
e
);
throw
DbException
.
convert
(
e
);
}
}
analyzeIfRequired
(
session
);
analyzeIfRequired
(
session
);
storeIfRequired
();
}
}
@Override
@Override
...
@@ -520,7 +520,6 @@ public class MVTable extends TableBase {
...
@@ -520,7 +520,6 @@ public class MVTable extends TableBase {
}
}
rowCount
=
0
;
rowCount
=
0
;
changesSinceAnalyze
=
0
;
changesSinceAnalyze
=
0
;
storeIfRequired
();
}
}
@Override
@Override
...
@@ -561,7 +560,6 @@ public class MVTable extends TableBase {
...
@@ -561,7 +560,6 @@ public class MVTable extends TableBase {
throw
de
;
throw
de
;
}
}
analyzeIfRequired
(
session
);
analyzeIfRequired
(
session
);
storeIfRequired
();
}
}
private
void
analyzeIfRequired
(
Session
session
)
{
private
void
analyzeIfRequired
(
Session
session
)
{
...
@@ -674,14 +672,12 @@ public class MVTable extends TableBase {
...
@@ -674,14 +672,12 @@ public class MVTable extends TableBase {
public
void
checkRename
()
{
public
void
checkRename
()
{
// ok
// ok
}
}
private
void
storeIfRequired
()
{
Transaction
getTransaction
(
Session
session
)
{
if
(
store
.
getUnsavedPageCount
()
>
1000
)
{
return
session
.
getTransaction
(
store
);
MVTableEngine
.
store
(
store
);
}
}
}
public
MV
Store
getStore
()
{
public
Transaction
Store
getStore
()
{
return
store
;
return
store
;
}
}
...
...
h2/src/main/org/h2/mvstore/db/MVTableEngine.java
浏览文件 @
7740acbb
...
@@ -17,6 +17,7 @@ import org.h2.engine.Constants;
...
@@ -17,6 +17,7 @@ import org.h2.engine.Constants;
import
org.h2.engine.Database
;
import
org.h2.engine.Database
;
import
org.h2.message.DbException
;
import
org.h2.message.DbException
;
import
org.h2.mvstore.MVStore
;
import
org.h2.mvstore.MVStore
;
import
org.h2.mvstore.TransactionStore
;
import
org.h2.table.TableBase
;
import
org.h2.table.TableBase
;
import
org.h2.util.New
;
import
org.h2.util.New
;
...
@@ -82,7 +83,7 @@ public class MVTableEngine implements TableEngine {
...
@@ -82,7 +83,7 @@ public class MVTableEngine implements TableEngine {
}
}
}
}
}
}
MVTable
table
=
new
MVTable
(
data
,
storeName
,
store
.
getStore
());
MVTable
table
=
new
MVTable
(
data
,
storeName
,
store
.
get
Transaction
Store
());
store
.
openTables
.
add
(
table
);
store
.
openTables
.
add
(
table
);
table
.
init
(
data
.
session
);
table
.
init
(
data
.
session
);
return
table
;
return
table
;
...
@@ -138,16 +139,26 @@ public class MVTableEngine implements TableEngine {
...
@@ -138,16 +139,26 @@ public class MVTableEngine implements TableEngine {
* The store.
* The store.
*/
*/
private
final
MVStore
store
;
private
final
MVStore
store
;
/**
* The transaction store.
*/
private
final
TransactionStore
transactionStore
;
public
Store
(
Database
db
,
MVStore
store
)
{
public
Store
(
Database
db
,
MVStore
store
)
{
this
.
db
=
db
;
this
.
db
=
db
;
this
.
store
=
store
;
this
.
store
=
store
;
this
.
transactionStore
=
new
TransactionStore
(
store
);
}
}
public
MVStore
getStore
()
{
public
MVStore
getStore
()
{
return
store
;
return
store
;
}
}
public
TransactionStore
getTransactionStore
()
{
return
transactionStore
;
}
}
}
}
}
h2/src/test/org/h2/test/store/TestTransactionStore.java
浏览文件 @
7740acbb
...
@@ -48,8 +48,13 @@ public class TestTransactionStore extends TestBase {
...
@@ -48,8 +48,13 @@ public class TestTransactionStore extends TestBase {
/**
/**
* Tests behavior when used for a sequence of SQL statements. Each statement
* Tests behavior when used for a sequence of SQL statements. Each statement
* uses a savepoint. Within a statement,
a change by the statement itself is
* uses a savepoint. Within a statement,
changes by the statement itself are
* not seen; the change is only seen when the statement finished.
* not seen; the change is only seen when the statement finished.
* <p>
* Update statements that change the key of multiple rows may use delete/add
* pairs to do so (they don't need to first delete all entries and then
* re-add them). Trying to add multiple values for the same key is not
* allowed (an update statement that would result in a duplicate key).
*/
*/
private
void
testMultiStatement
()
{
private
void
testMultiStatement
()
{
MVStore
s
=
MVStore
.
open
(
null
);
MVStore
s
=
MVStore
.
open
(
null
);
...
@@ -61,8 +66,6 @@ public class TestTransactionStore extends TestBase {
...
@@ -61,8 +66,6 @@ public class TestTransactionStore extends TestBase {
tx
=
ts
.
begin
();
tx
=
ts
.
begin
();
// TODO support and test rollback of table creation / removal
// start of statement
// start of statement
// create table test
// create table test
startUpdate
=
tx
.
setSavepoint
();
startUpdate
=
tx
.
setSavepoint
();
...
@@ -94,9 +97,7 @@ public class TestTransactionStore extends TestBase {
...
@@ -94,9 +97,7 @@ public class TestTransactionStore extends TestBase {
assertEquals
(
"World"
,
m
.
get
(
"2"
));
assertEquals
(
"World"
,
m
.
get
(
"2"
));
// already updated by this statement, so it has no effect
// already updated by this statement, so it has no effect
// but still returns true because it was changed by this transaction
// but still returns true because it was changed by this transaction
assertTrue
(
m
.
trySet
(
"2"
,
null
,
true
));
int
TODO
;
// assertTrue(m.trySet("2", null, true));
assertTrue
(
m
.
trySet
(
"3"
,
"World"
,
true
));
assertTrue
(
m
.
trySet
(
"3"
,
"World"
,
true
));
// not seen within this statement
// not seen within this statement
...
@@ -118,7 +119,18 @@ public class TestTransactionStore extends TestBase {
...
@@ -118,7 +119,18 @@ public class TestTransactionStore extends TestBase {
version
=
s
.
getCurrentVersion
();
version
=
s
.
getCurrentVersion
();
m
=
tx
.
openMap
(
"test"
,
version
);
m
=
tx
.
openMap
(
"test"
,
version
);
// update test set id = 1
// update test set id = 1
// TODO should fail: duplicate key
// should fail: duplicate key
assertTrue
(
m
.
trySet
(
"2"
,
null
,
true
));
assertTrue
(
m
.
trySet
(
"1"
,
"Hello"
,
true
));
assertTrue
(
m
.
trySet
(
"3"
,
null
,
true
));
assertFalse
(
m
.
trySet
(
"1"
,
"World"
,
true
));
tx
.
rollbackToSavepoint
(
startUpdate
);
version
=
s
.
getCurrentVersion
();
m
=
tx
.
openMap
(
"test"
,
version
);
assertNull
(
m
.
get
(
"1"
));
assertEquals
(
"Hello"
,
m
.
get
(
"2"
));
assertEquals
(
"World"
,
m
.
get
(
"3"
));
tx
.
commit
();
tx
.
commit
();
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论