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