Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
81bd7b8f
Unverified
提交
81bd7b8f
authored
1月 12, 2019
作者:
Evgenij Ryazanov
提交者:
GitHub
1月 12, 2019
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1656 from katzyn/window
Optimize window aggregates with ORDER BY + UNBOUNDED PRECEDING + no exclusions
上级
75ad6204
ede2d58d
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
166 行增加
和
22 行删除
+166
-22
changelog.html
h2/src/docsrc/html/changelog.html
+2
-0
Aggregate.java
h2/src/main/org/h2/api/Aggregate.java
+3
-1
AggregateFunction.java
h2/src/main/org/h2/api/AggregateFunction.java
+3
-1
AbstractAggregate.java
...c/main/org/h2/expression/aggregate/AbstractAggregate.java
+52
-6
WindowFrame.java
h2/src/main/org/h2/expression/analysis/WindowFrame.java
+94
-13
WindowFrameExclusion.java
...main/org/h2/expression/analysis/WindowFrameExclusion.java
+11
-0
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
81bd7b8f
...
...
@@ -21,6 +21,8 @@ Change Log
<h2>
Next Version (unreleased)
</h2>
<ul>
<li>
PR #1656: Optimize window aggregates with ORDER BY + UNBOUNDED PRECEDING + no exclusions
</li>
<li>
Issue #1654: OOM in TestMemoryUsage, in big mode
</li>
<li>
Issue #1651: TIMESTAMP values near DST may be changed in MVStore database due to UTC-based PageStore format in some
...
...
h2/src/main/org/h2/api/Aggregate.java
浏览文件 @
81bd7b8f
...
...
@@ -44,7 +44,9 @@ public interface Aggregate {
void
add
(
Object
value
)
throws
SQLException
;
/**
* This method returns the computed aggregate value.
* This method returns the computed aggregate value. This method must
* preserve previously added values and must be able to reevaluate result if
* more values were added since its previous invocation.
*
* @return the aggregated value
*/
...
...
h2/src/main/org/h2/api/AggregateFunction.java
浏览文件 @
81bd7b8f
...
...
@@ -47,7 +47,9 @@ public interface AggregateFunction {
void
add
(
Object
value
)
throws
SQLException
;
/**
* This method returns the computed aggregate value.
* This method returns the computed aggregate value. This method must
* preserve previously added values and must be able to reevaluate result if
* more values were added since its previous invocation.
*
* @return the aggregated value
*/
...
...
h2/src/main/org/h2/expression/aggregate/AbstractAggregate.java
浏览文件 @
81bd7b8f
...
...
@@ -16,6 +16,10 @@ import org.h2.engine.Session;
import
org.h2.expression.Expression
;
import
org.h2.expression.analysis.DataAnalysisOperation
;
import
org.h2.expression.analysis.WindowFrame
;
import
org.h2.expression.analysis.WindowFrameBound
;
import
org.h2.expression.analysis.WindowFrameBoundType
;
import
org.h2.expression.analysis.WindowFrameExclusion
;
import
org.h2.expression.analysis.WindowFrameUnits
;
import
org.h2.table.ColumnResolver
;
import
org.h2.table.TableFilter
;
import
org.h2.value.Value
;
...
...
@@ -83,27 +87,69 @@ public abstract class AbstractAggregate extends DataAnalysisOperation {
protected
void
getOrderedResultLoop
(
Session
session
,
HashMap
<
Integer
,
Value
>
result
,
ArrayList
<
Value
[]>
ordered
,
int
rowIdColumn
)
{
WindowFrame
frame
=
over
.
getWindowFrame
();
/*
* With RANGE (default) or GROUPS units and EXCLUDE GROUP or EXCLUDE NO
* OTHERS (default) exclusion all rows in the group have the same value
* of window aggregate function.
*/
boolean
grouped
=
frame
==
null
||
frame
.
getUnits
()
!=
WindowFrameUnits
.
ROWS
&&
frame
.
getExclusion
().
isGroupOrNoOthers
();
if
(
frame
==
null
)
{
if
(
over
.
getOrderBy
()
==
null
)
{
aggregateWholePartition
(
session
,
result
,
ordered
,
rowIdColumn
);
assert
over
.
getOrderBy
()
!=
null
;
aggregateFastPartition
(
session
,
result
,
ordered
,
rowIdColumn
,
grouped
);
return
;
}
}
else
if
(
frame
.
isFullPartition
())
{
if
(
frame
.
getStarting
().
getType
()
==
WindowFrameBoundType
.
UNBOUNDED_PRECEDING
&&
frame
.
getExclusion
()
==
WindowFrameExclusion
.
EXCLUDE_NO_OTHERS
)
{
WindowFrameBound
following
=
frame
.
getFollowing
();
if
(
following
!=
null
&&
following
.
getType
()
==
WindowFrameBoundType
.
UNBOUNDED_FOLLOWING
)
{
aggregateWholePartition
(
session
,
result
,
ordered
,
rowIdColumn
);
}
else
{
aggregateFastPartition
(
session
,
result
,
ordered
,
rowIdColumn
,
grouped
);
}
return
;
}
// All other types of frames (slow)
int
size
=
ordered
.
size
();
for
(
int
i
=
0
;
i
<
size
;
i
++
)
{
for
(
int
i
=
0
;
i
<
size
;)
{
Object
aggregateData
=
createAggregateData
();
for
(
Iterator
<
Value
[]>
iter
=
WindowFrame
.
iterator
(
over
,
session
,
ordered
,
getOverOrderBySort
(),
i
,
false
);
iter
.
hasNext
();)
{
updateFromExpressions
(
session
,
aggregateData
,
iter
.
next
());
}
result
.
put
(
ordered
.
get
(
i
)[
rowIdColumn
].
getInt
(),
getAggregatedValue
(
session
,
aggregateData
)
);
i
=
processGroup
(
session
,
result
,
ordered
,
rowIdColumn
,
i
,
size
,
aggregateData
,
grouped
);
}
}
private
void
aggregateFastPartition
(
Session
session
,
HashMap
<
Integer
,
Value
>
result
,
ArrayList
<
Value
[]>
ordered
,
int
rowIdColumn
,
boolean
grouped
)
{
Object
aggregateData
=
createAggregateData
();
int
size
=
ordered
.
size
();
int
lastIncludedRow
=
-
1
;
for
(
int
i
=
0
;
i
<
size
;)
{
int
newLast
=
WindowFrame
.
getEndIndex
(
over
,
session
,
ordered
,
getOverOrderBySort
(),
i
);
assert
newLast
>=
lastIncludedRow
;
if
(
newLast
>
lastIncludedRow
)
{
for
(
int
j
=
lastIncludedRow
+
1
;
j
<=
newLast
;
j
++)
{
updateFromExpressions
(
session
,
aggregateData
,
ordered
.
get
(
j
));
}
lastIncludedRow
=
newLast
;
}
i
=
processGroup
(
session
,
result
,
ordered
,
rowIdColumn
,
i
,
size
,
aggregateData
,
grouped
);
}
}
private
int
processGroup
(
Session
session
,
HashMap
<
Integer
,
Value
>
result
,
ArrayList
<
Value
[]>
ordered
,
int
rowIdColumn
,
int
i
,
int
size
,
Object
aggregateData
,
boolean
grouped
)
{
Value
[]
firstRowInGroup
=
ordered
.
get
(
i
),
currentRowInGroup
=
firstRowInGroup
;
Value
r
=
getAggregatedValue
(
session
,
aggregateData
);
do
{
result
.
put
(
currentRowInGroup
[
rowIdColumn
].
getInt
(),
r
);
}
while
(++
i
<
size
&&
grouped
&&
overOrderBySort
.
compare
(
firstRowInGroup
,
currentRowInGroup
=
ordered
.
get
(
i
))
==
0
);
return
i
;
}
private
void
aggregateWholePartition
(
Session
session
,
HashMap
<
Integer
,
Value
>
result
,
ArrayList
<
Value
[]>
ordered
,
int
rowIdColumn
)
{
// Aggregate values from the whole partition
...
...
h2/src/main/org/h2/expression/analysis/WindowFrame.java
浏览文件 @
81bd7b8f
...
...
@@ -219,6 +219,35 @@ public final class WindowFrame {
reverse
);
}
/**
* Returns end index for the specified frame, or default end index if frame
* is null.
*
* @param over
* window
* @param session
* the session
* @param orderedRows
* ordered rows
* @param sortOrder
* sort order
* @param currentRow
* index of the current row
* @return end index
* @throws UnsupportedOperationException
* if over is not null and its exclusion clause is not EXCLUDE
* NO OTHERS
*/
public
static
int
getEndIndex
(
Window
over
,
Session
session
,
ArrayList
<
Value
[]>
orderedRows
,
SortOrder
sortOrder
,
int
currentRow
)
{
WindowFrame
frame
=
over
.
getWindowFrame
();
if
(
frame
!=
null
)
{
return
frame
.
getEndIndex
(
session
,
orderedRows
,
sortOrder
,
currentRow
);
}
int
endIndex
=
orderedRows
.
size
()
-
1
;
return
over
.
getOrderBy
()
==
null
?
endIndex
:
toGroupEnd
(
orderedRows
,
sortOrder
,
currentRow
,
endIndex
);
}
private
static
Iterator
<
Value
[]>
plainIterator
(
ArrayList
<
Value
[]>
orderedRows
,
int
startIndex
,
int
endIndex
,
boolean
reverse
)
{
if
(
endIndex
<
startIndex
)
{
...
...
@@ -308,6 +337,42 @@ public final class WindowFrame {
this
.
exclusion
=
exclusion
;
}
/**
* Returns the units.
*
* @return the units
*/
public
WindowFrameUnits
getUnits
()
{
return
units
;
}
/**
* Returns the starting clause.
*
* @return the starting clause
*/
public
WindowFrameBound
getStarting
()
{
return
starting
;
}
/**
* Returns the following clause.
*
* @return the following clause, or null
*/
public
WindowFrameBound
getFollowing
()
{
return
following
;
}
/**
* Returns the exclusion clause.
*
* @return the exclusion clause
*/
public
WindowFrameExclusion
getExclusion
()
{
return
exclusion
;
}
/**
* Checks validity of this frame.
*
...
...
@@ -320,18 +385,6 @@ public final class WindowFrame {
&&
s
.
compareTo
(
f
)
<=
0
;
}
/**
* Returns whether window frame specification contains all rows in
* partition.
*
* @return whether window frame specification contains all rows in partition
*/
public
boolean
isFullPartition
()
{
return
starting
.
getType
()
==
WindowFrameBoundType
.
UNBOUNDED_PRECEDING
&&
following
!=
null
&&
following
.
getType
()
==
WindowFrameBoundType
.
UNBOUNDED_FOLLOWING
&&
exclusion
==
WindowFrameExclusion
.
EXCLUDE_NO_OTHERS
;
}
/**
* Returns iterator.
*
...
...
@@ -345,7 +398,6 @@ public final class WindowFrame {
* index of the current row
* @param reverse
* whether iterator should iterate in reverse order
*
* @return iterator
*/
public
Iterator
<
Value
[]>
iterator
(
Session
session
,
ArrayList
<
Value
[]>
orderedRows
,
SortOrder
sortOrder
,
...
...
@@ -372,6 +424,35 @@ public final class WindowFrame {
:
plainIterator
(
orderedRows
,
startIndex
,
endIndex
,
reverse
);
}
/**
* Returns end index of this frame,
*
* @param session
* the session
* @param orderedRows
* ordered rows
* @param sortOrder
* sort order
* @param currentRow
* index of the current row
* @return end index
* @throws UnsupportedOperationException
* if exclusion clause is not EXCLUDE NO OTHERS
*/
private
int
getEndIndex
(
Session
session
,
ArrayList
<
Value
[]>
orderedRows
,
SortOrder
sortOrder
,
int
currentRow
)
{
if
(
exclusion
!=
WindowFrameExclusion
.
EXCLUDE_NO_OTHERS
)
{
throw
new
UnsupportedOperationException
();
}
int
endIndex
=
following
!=
null
?
getIndex
(
session
,
orderedRows
,
sortOrder
,
currentRow
,
following
,
true
)
:
units
==
WindowFrameUnits
.
ROWS
?
currentRow
:
toGroupEnd
(
orderedRows
,
sortOrder
,
currentRow
,
orderedRows
.
size
()
-
1
);
int
size
=
orderedRows
.
size
();
if
(
endIndex
>=
size
)
{
endIndex
=
size
-
1
;
}
return
endIndex
;
}
private
int
getIndex
(
Session
session
,
ArrayList
<
Value
[]>
orderedRows
,
SortOrder
sortOrder
,
int
currentRow
,
WindowFrameBound
bound
,
boolean
forFollowing
)
{
int
size
=
orderedRows
.
size
();
...
...
h2/src/main/org/h2/expression/analysis/WindowFrameExclusion.java
浏览文件 @
81bd7b8f
...
...
@@ -38,6 +38,17 @@ public enum WindowFrameExclusion {
this
.
sql
=
sql
;
}
/**
* Returns true if this exclusion clause excludes or includes the whole
* group.
*
* @return true if this exclusion clause is {@link #EXCLUDE_GROUP} or
* {@link #EXCLUDE_NO_OTHERS}
*/
public
boolean
isGroupOrNoOthers
()
{
return
this
==
WindowFrameExclusion
.
EXCLUDE_GROUP
||
this
==
EXCLUDE_NO_OTHERS
;
}
/**
* Returns SQL representation.
*
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
81bd7b8f
...
...
@@ -805,4 +805,4 @@ queryparser tokenized freeze factorings recompilation unenclosed rfe dsync
econd irst bcef ordinality nord unnest
analyst occupation distributive josaph aor engineer sajeewa isuru randil kevin doctor businessman artist ashan
corrupts splitted disruption unintentional octets preconditions predicates subq objectweb insn opcodes
preserves masking holder unboxing avert iae transformed subtle
preserves masking holder unboxing avert iae transformed subtle
reevaluate exclusions
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论