Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
0d98cd30
提交
0d98cd30
authored
7月 12, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Use subset of external result when OFFSET/LIMIT are in use
上级
cb37d125
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
36 行增加
和
47 行删除
+36
-47
LocalResult.java
h2/src/main/org/h2/result/LocalResult.java
+36
-47
没有找到文件。
h2/src/main/org/h2/result/LocalResult.java
浏览文件 @
0d98cd30
...
...
@@ -42,7 +42,6 @@ public class LocalResult implements ResultInterface, ResultTarget {
private
int
offset
;
private
int
limit
=
-
1
;
private
ResultExternal
external
;
private
int
diskOffset
;
private
boolean
distinct
;
private
boolean
randomAccess
;
private
boolean
closed
;
...
...
@@ -157,7 +156,6 @@ public class LocalResult implements ResultInterface, ResultTarget {
copy
.
offset
=
0
;
copy
.
limit
=
-
1
;
copy
.
external
=
e2
;
copy
.
diskOffset
=
this
.
diskOffset
;
return
copy
;
}
...
...
@@ -231,11 +229,6 @@ public class LocalResult implements ResultInterface, ResultTarget {
currentRow
=
null
;
if
(
external
!=
null
)
{
external
.
reset
();
if
(
diskOffset
>
0
)
{
for
(
int
i
=
0
;
i
<
diskOffset
;
i
++)
{
external
.
next
();
}
}
}
}
...
...
@@ -318,15 +311,15 @@ public class LocalResult implements ResultInterface, ResultTarget {
}
else
{
rowCount
=
external
.
addRow
(
values
);
}
return
;
}
rows
.
add
(
values
);
rowCount
++;
if
(
rows
.
size
()
>
maxMemoryRows
)
{
if
(
external
==
null
)
{
createExternalResult
();
}
else
{
rows
.
add
(
values
);
rowCount
++;
if
(
rows
.
size
()
>
maxMemoryRows
)
{
if
(
external
==
null
)
{
createExternalResult
();
}
addRowsToDisk
();
}
addRowsToDisk
();
}
}
...
...
@@ -344,40 +337,12 @@ public class LocalResult implements ResultInterface, ResultTarget {
* This method is called after all rows have been added.
*/
public
void
done
()
{
if
(
distinct
)
{
if
(
distinctRows
!=
null
)
{
rows
=
distinctRows
.
values
();
}
else
{
if
(
external
!=
null
&&
sort
!=
null
)
{
// external sort
ResultExternal
temp
=
external
;
external
=
null
;
temp
.
reset
();
rows
=
Utils
.
newSmallArrayList
();
// TODO use offset directly if possible
while
(
true
)
{
Value
[]
list
=
temp
.
next
();
if
(
list
==
null
)
{
break
;
}
if
(
external
==
null
)
{
createExternalResult
();
}
rows
.
add
(
list
);
if
(
rows
.
size
()
>
maxMemoryRows
)
{
rowCount
=
external
.
addRows
(
rows
);
rows
.
clear
();
}
}
temp
.
close
();
// the remaining data in rows is written in the following
// lines
}
}
}
if
(
external
!=
null
)
{
addRowsToDisk
();
}
else
{
if
(
distinct
)
{
rows
=
distinctRows
.
values
();
}
if
(
sort
!=
null
)
{
if
(
offset
>
0
||
limit
>
0
)
{
sort
.
sort
(
rows
,
offset
,
limit
<
0
?
rows
.
size
()
:
limit
);
...
...
@@ -417,10 +382,34 @@ public class LocalResult implements ResultInterface, ResultTarget {
rows
=
new
ArrayList
<>(
rows
.
subList
(
offset
,
offset
+
limit
));
}
else
{
if
(
clearAll
)
{
external
.
close
();
external
=
null
;
return
;
}
diskOffset
=
offset
;
trimExternal
(
offset
,
limit
);
}
}
private
void
trimExternal
(
int
offset
,
int
limit
)
{
ResultExternal
temp
=
external
;
external
=
null
;
temp
.
reset
();
while
(--
offset
>=
0
)
{
temp
.
next
();
}
while
(--
limit
>=
0
)
{
rows
.
add
(
temp
.
next
());
if
(
rows
.
size
()
>
maxMemoryRows
)
{
if
(
external
==
null
)
{
createExternalResult
();
}
addRowsToDisk
();
}
}
if
(
external
!=
null
)
{
addRowsToDisk
();
}
temp
.
close
();
}
@Override
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论