Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
dbfd53ce
提交
dbfd53ce
authored
7 年前
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Do not copy result of DataUtils.parseMap() to a new maps
上级
ca720764
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
18 行增加
和
8 行删除
+18
-8
MVStore.java
h2/src/main/org/h2/mvstore/MVStore.java
+18
-8
没有找到文件。
h2/src/main/org/h2/mvstore/MVStore.java
浏览文件 @
dbfd53ce
...
@@ -445,6 +445,7 @@ public final class MVStore {
...
@@ -445,6 +445,7 @@ public final class MVStore {
* @param builder the map builder
* @param builder the map builder
* @return the map
* @return the map
*/
*/
@SuppressWarnings
({
"unchecked"
,
"rawtypes"
})
public
synchronized
<
M
extends
MVMap
<
K
,
V
>,
K
,
V
>
M
openMap
(
public
synchronized
<
M
extends
MVMap
<
K
,
V
>,
K
,
V
>
M
openMap
(
String
name
,
MVMap
.
MapBuilder
<
M
,
K
,
V
>
builder
)
{
String
name
,
MVMap
.
MapBuilder
<
M
,
K
,
V
>
builder
)
{
checkOpen
();
checkOpen
();
...
@@ -455,15 +456,14 @@ public final class MVStore {
...
@@ -455,15 +456,14 @@ public final class MVStore {
M
map
;
M
map
;
if
(
x
!=
null
)
{
if
(
x
!=
null
)
{
id
=
DataUtils
.
parseHexInt
(
x
);
id
=
DataUtils
.
parseHexInt
(
x
);
@SuppressWarnings
(
"unchecked"
)
M
old
=
(
M
)
maps
.
get
(
id
);
M
old
=
(
M
)
maps
.
get
(
id
);
if
(
old
!=
null
)
{
if
(
old
!=
null
)
{
return
old
;
return
old
;
}
}
map
=
builder
.
create
();
map
=
builder
.
create
();
String
config
=
meta
.
get
(
MVMap
.
getMapKey
(
id
));
String
config
=
meta
.
get
(
MVMap
.
getMapKey
(
id
));
c
=
New
.
hashMap
();
// Cast from HashMap<String, String> to HashMap<String, Object> is safe
c
.
putAll
(
DataUtils
.
parseMap
(
config
)
);
c
=
(
HashMap
)
DataUtils
.
parseMap
(
config
);
c
.
put
(
"id"
,
id
);
c
.
put
(
"id"
,
id
);
map
.
init
(
this
,
c
);
map
.
init
(
this
,
c
);
root
=
getRootPos
(
meta
,
id
);
root
=
getRootPos
(
meta
,
id
);
...
@@ -2725,7 +2725,18 @@ public final class MVStore {
...
@@ -2725,7 +2725,18 @@ public final class MVStore {
*/
*/
public
static
class
Builder
{
public
static
class
Builder
{
private
final
HashMap
<
String
,
Object
>
config
=
New
.
hashMap
();
private
final
HashMap
<
String
,
Object
>
config
;
private
Builder
(
HashMap
<
String
,
Object
>
config
)
{
this
.
config
=
config
;
}
/**
* Creates new instance of MVStore.Builder.
*/
public
Builder
()
{
config
=
New
.
hashMap
();
}
private
Builder
set
(
String
key
,
Object
value
)
{
private
Builder
set
(
String
key
,
Object
value
)
{
config
.
put
(
key
,
value
);
config
.
put
(
key
,
value
);
...
@@ -2938,11 +2949,10 @@ public final class MVStore {
...
@@ -2938,11 +2949,10 @@ public final class MVStore {
* @param s the string representation
* @param s the string representation
* @return the builder
* @return the builder
*/
*/
@SuppressWarnings
({
"unchecked"
,
"rawtypes"
})
public
static
Builder
fromString
(
String
s
)
{
public
static
Builder
fromString
(
String
s
)
{
HashMap
<
String
,
String
>
config
=
DataUtils
.
parseMap
(
s
);
// Cast from HashMap<String, String> to HashMap<String, Object> is safe
Builder
builder
=
new
Builder
();
return
new
Builder
((
HashMap
)
DataUtils
.
parseMap
(
s
));
builder
.
config
.
putAll
(
config
);
return
builder
;
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论