Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
aec2077b
提交
aec2077b
authored
7月 13, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
reuse empty arrays
上级
65e68391
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
7 行增加
和
6 行删除
+7
-6
ViewIndex.java
h2/src/main/org/h2/index/ViewIndex.java
+2
-1
CompressTool.java
h2/src/main/org/h2/tools/CompressTool.java
+5
-5
没有找到文件。
h2/src/main/org/h2/index/ViewIndex.java
浏览文件 @
aec2077b
...
...
@@ -19,6 +19,7 @@ import org.h2.result.SearchRow;
import
org.h2.table.Column
;
import
org.h2.table.TableView
;
import
org.h2.util.IntArray
;
import
org.h2.util.MemoryUtils
;
import
org.h2.util.ObjectArray
;
import
org.h2.util.SmallLRUCache
;
import
org.h2.value.Value
;
...
...
@@ -98,7 +99,7 @@ public class ViewIndex extends BaseIndex {
}
public
double
getCost
(
Session
session
,
int
[]
masks
)
throws
SQLException
{
IntArray
masksArray
=
new
IntArray
(
masks
==
null
?
new
int
[
0
]
:
masks
);
IntArray
masksArray
=
new
IntArray
(
masks
==
null
?
MemoryUtils
.
EMPTY_INTS
:
masks
);
CostElement
cachedCost
=
costCache
.
get
(
masksArray
);
if
(
cachedCost
!=
null
)
{
long
time
=
System
.
currentTimeMillis
();
...
...
h2/src/main/org/h2/tools/CompressTool.java
浏览文件 @
aec2077b
...
...
@@ -26,7 +26,7 @@ import org.h2.compress.LZFInputStream;
import
org.h2.compress.LZFOutputStream
;
import
org.h2.constant.ErrorCode
;
import
org.h2.message.Message
;
import
org.h2.util.
Byte
Utils
;
import
org.h2.util.
Memory
Utils
;
import
org.h2.util.StringUtils
;
/**
...
...
@@ -44,10 +44,10 @@ public class CompressTool {
private
byte
[]
getBuffer
(
int
min
)
{
if
(
min
>
MAX_BUFFER_SIZE
)
{
return
Byte
Utils
.
newBytes
(
min
);
return
Memory
Utils
.
newBytes
(
min
);
}
if
(
cachedBuffer
==
null
||
cachedBuffer
.
length
<
min
)
{
cachedBuffer
=
Byte
Utils
.
newBytes
(
min
);
cachedBuffer
=
Memory
Utils
.
newBytes
(
min
);
}
return
cachedBuffer
;
}
...
...
@@ -78,7 +78,7 @@ public class CompressTool {
Compressor
compress
=
getCompressor
(
algorithm
);
byte
[]
buff
=
getBuffer
((
len
<
100
?
len
+
100
:
len
)
*
2
);
int
newLen
=
compress
(
in
,
in
.
length
,
compress
,
buff
);
byte
[]
out
=
Byte
Utils
.
newBytes
(
newLen
);
byte
[]
out
=
Memory
Utils
.
newBytes
(
newLen
);
System
.
arraycopy
(
buff
,
0
,
out
,
0
,
newLen
);
return
out
;
}
...
...
@@ -112,7 +112,7 @@ public class CompressTool {
try
{
int
len
=
readInt
(
in
,
1
);
int
start
=
1
+
getLength
(
len
);
byte
[]
buff
=
Byte
Utils
.
newBytes
(
len
);
byte
[]
buff
=
Memory
Utils
.
newBytes
(
len
);
compress
.
expand
(
in
,
start
,
in
.
length
-
start
,
buff
,
0
,
len
);
return
buff
;
}
catch
(
Exception
e
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论