Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
38f2504c
提交
38f2504c
authored
6 年前
作者:
Andrei Tokar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
limit visibility
unused methods removed min0r refactoring
上级
daa433f0
master
version-1.4.198
无相关合并请求
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
23 行增加
和
38 行删除
+23
-38
MVTableEngine.java
h2/src/main/org/h2/mvstore/db/MVTableEngine.java
+21
-8
Transaction.java
h2/src/main/org/h2/mvstore/tx/Transaction.java
+2
-2
TransactionStore.java
h2/src/main/org/h2/mvstore/tx/TransactionStore.java
+0
-28
没有找到文件。
h2/src/main/org/h2/mvstore/db/MVTableEngine.java
浏览文件 @
38f2504c
...
...
@@ -109,10 +109,7 @@ public class MVTableEngine implements TableEngine {
public
TableBase
createTable
(
CreateTableData
data
)
{
Database
db
=
data
.
session
.
getDatabase
();
Store
store
=
init
(
db
);
MVTable
table
=
new
MVTable
(
data
,
store
);
table
.
init
(
data
.
session
);
store
.
tableMap
.
put
(
table
.
getMapName
(),
table
);
return
table
;
return
store
.
createTable
(
data
);
}
/**
...
...
@@ -124,7 +121,7 @@ public class MVTableEngine implements TableEngine {
* The map of open tables.
* Key: the map name, value: the table.
*/
final
ConcurrentHashMap
<
String
,
MVTable
>
tableMap
=
private
final
ConcurrentHashMap
<
String
,
MVTable
>
tableMap
=
new
ConcurrentHashMap
<>();
/**
...
...
@@ -152,7 +149,7 @@ public class MVTableEngine implements TableEngine {
* @param builder the builder
* @param encrypted whether the store is encrypted
*/
void
open
(
Database
db
,
MVStore
.
Builder
builder
,
boolean
encrypted
)
{
private
void
open
(
Database
db
,
MVStore
.
Builder
builder
,
boolean
encrypted
)
{
this
.
encrypted
=
encrypted
;
try
{
this
.
store
=
builder
.
open
();
...
...
@@ -166,7 +163,6 @@ public class MVTableEngine implements TableEngine {
this
.
transactionStore
=
new
TransactionStore
(
store
,
new
ValueDataType
(
db
.
getCompareMode
(),
db
,
null
),
db
.
getLockTimeout
());
// transactionStore.init();
}
catch
(
IllegalStateException
e
)
{
throw
convertIllegalStateException
(
e
);
}
...
...
@@ -195,6 +191,10 @@ public class MVTableEngine implements TableEngine {
throw
DbException
.
get
(
ErrorCode
.
IO_EXCEPTION_1
,
e
,
fileName
);
}
else
if
(
errorCode
==
DataUtils
.
ERROR_INTERNAL
)
{
throw
DbException
.
get
(
ErrorCode
.
GENERAL_ERROR_1
,
e
,
fileName
);
}
throw
DbException
.
get
(
ErrorCode
.
FILE_CORRUPTED_1
,
...
...
@@ -214,6 +214,19 @@ public class MVTableEngine implements TableEngine {
return
tableMap
.
get
(
tableName
);
}
/**
* Create a table.
*
* @param data CreateTableData
* @return table created
*/
public
MVTable
createTable
(
CreateTableData
data
)
{
MVTable
table
=
new
MVTable
(
data
,
this
);
table
.
init
(
data
.
session
);
tableMap
.
put
(
table
.
getMapName
(),
table
);
return
table
;
}
/**
* Remove a table.
*
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/mvstore/tx/Transaction.java
浏览文件 @
38f2504c
...
...
@@ -436,7 +436,7 @@ public class Transaction {
return
store
.
getChanges
(
this
,
getLogId
(),
savepointId
);
}
long
getLogId
()
{
private
long
getLogId
()
{
return
getLogId
(
statusAndLogId
.
get
());
}
...
...
@@ -454,7 +454,7 @@ public class Transaction {
/**
* Check whether this transaction is open or prepared.
*/
void
checkNotClosed
()
{
private
void
checkNotClosed
()
{
if
(
getStatus
()
==
STATUS_CLOSED
)
{
throw
DataUtils
.
newIllegalStateException
(
DataUtils
.
ERROR_CLOSED
,
"Transaction {0} is closed"
,
transactionId
);
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/mvstore/tx/TransactionStore.java
浏览文件 @
38f2504c
...
...
@@ -89,11 +89,6 @@ public class TransactionStore {
private
final
AtomicReferenceArray
<
Transaction
>
transactions
=
new
AtomicReferenceArray
<>(
MAX_OPEN_TRANSACTIONS
+
1
);
/**
* The next id of a temporary map.
*/
private
int
nextTempMapId
;
private
static
final
String
UNDO_LOG_NAME_PEFIX
=
"undoLog"
;
private
static
final
char
UNDO_LOG_COMMITTED
=
'-'
;
// must come before open in lexicographical order
private
static
final
char
UNDO_LOG_OPEN
=
'.'
;
...
...
@@ -517,29 +512,6 @@ public class TransactionStore {
return
map
;
}
/**
* Create a temporary map. Such maps are removed when opening the store.
*
* @return the map
*/
synchronized
MVMap
<
Object
,
Integer
>
createTempMap
()
{
String
mapName
=
"temp."
+
nextTempMapId
++;
return
openTempMap
(
mapName
);
}
/**
* Open a temporary map.
*
* @param mapName the map name
* @return the map
*/
private
MVMap
<
Object
,
Integer
>
openTempMap
(
String
mapName
)
{
MVMap
.
Builder
<
Object
,
Integer
>
mapBuilder
=
new
MVMap
.
Builder
<
Object
,
Integer
>().
keyType
(
dataType
);
return
store
.
openMap
(
mapName
,
mapBuilder
);
}
/**
* End this transaction. Change status to CLOSED and vacate transaction slot.
* Will try to commit MVStore if autocommitDelay is 0 or if database is idle
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论