Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
79e5414b
提交
79e5414b
authored
2月 27, 2019
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Merge LazyResultQueryFlatForUpdate logic in superclass
上级
cc53f39d
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
9 行增加
和
26 行删除
+9
-26
Select.java
h2/src/main/org/h2/command/dml/Select.java
+9
-26
没有找到文件。
h2/src/main/org/h2/command/dml/Select.java
浏览文件 @
79e5414b
...
...
@@ -718,9 +718,8 @@ public class Select extends Query {
}
}
int
sampleSize
=
getSampleSizeValue
(
session
);
LazyResultQueryFlat
lazyResult
=
isForUpdateMvcc
?
new
LazyResultQueryFlatForUpdate
(
expressionArray
,
sampleSize
,
columnCount
)
:
new
LazyResultQueryFlat
(
expressionArray
,
sampleSize
,
columnCount
);
LazyResultQueryFlat
lazyResult
=
new
LazyResultQueryFlat
(
expressionArray
,
columnCount
,
sampleSize
,
isForUpdateMvcc
);
skipOffset
(
lazyResult
,
offset
,
quickOffset
);
if
(
result
==
null
)
{
return
lazyResult
;
...
...
@@ -1851,13 +1850,16 @@ public class Select extends Query {
/**
* Lazy execution for a flat query.
*/
private
class
LazyResultQueryFlat
extends
LazyResultSelect
{
private
final
class
LazyResultQueryFlat
extends
LazyResultSelect
{
int
sampleSize
;
private
int
sampleSize
;
LazyResultQueryFlat
(
Expression
[]
expressions
,
int
sampleSize
,
int
columnCount
)
{
private
boolean
forUpdate
;
LazyResultQueryFlat
(
Expression
[]
expressions
,
int
columnCount
,
int
sampleSize
,
boolean
forUpdate
)
{
super
(
expressions
,
columnCount
);
this
.
sampleSize
=
sampleSize
;
this
.
forUpdate
=
forUpdate
;
}
@Override
...
...
@@ -1865,7 +1867,7 @@ public class Select extends Query {
while
((
sampleSize
<=
0
||
rowNumber
<
sampleSize
)
&&
topTableFilter
.
next
())
{
setCurrentRowNumber
(
rowNumber
+
1
);
// This method may lock rows
if
(
isSelect
ConditionMet
())
{
if
(
forUpdate
?
isConditionMetForUpdate
()
:
is
ConditionMet
())
{
++
rowNumber
;
Value
[]
row
=
new
Value
[
columnCount
];
for
(
int
i
=
0
;
i
<
columnCount
;
i
++)
{
...
...
@@ -1891,25 +1893,6 @@ public class Select extends Query {
return
false
;
}
boolean
isSelectConditionMet
()
{
return
isConditionMet
();
}
}
/**
* Lazy execution for a flat for update query.
*/
private
final
class
LazyResultQueryFlatForUpdate
extends
LazyResultQueryFlat
{
LazyResultQueryFlatForUpdate
(
Expression
[]
expressions
,
int
sampleSize
,
int
columnCount
)
{
super
(
expressions
,
sampleSize
,
columnCount
);
}
@Override
boolean
isSelectConditionMet
()
{
return
isConditionMetForUpdate
();
}
}
/**
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论