Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
356414ab
提交
356414ab
authored
9月 15, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add experimental implementation of grouped window queries
上级
8949f340
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
142 行增加
和
63 行删除
+142
-63
Select.java
h2/src/main/org/h2/command/dml/Select.java
+85
-60
SelectGroups.java
h2/src/main/org/h2/command/dml/SelectGroups.java
+1
-0
Aggregate.java
h2/src/main/org/h2/expression/aggregate/Aggregate.java
+12
-1
array-agg.sql
...est/org/h2/test/scripts/functions/aggregate/array-agg.sql
+36
-2
sum.sql
h2/src/test/org/h2/test/scripts/functions/aggregate/sum.sql
+8
-0
没有找到文件。
h2/src/main/org/h2/command/dml/Select.java
浏览文件 @
356414ab
...
...
@@ -356,29 +356,34 @@ public class Select extends Query {
}
private
void
queryWindow
(
int
columnCount
,
LocalResult
result
,
long
offset
,
boolean
quickOffset
)
{
if
(
isGroupQuery
)
{
queryGroupWindow
(
columnCount
,
result
,
offset
,
quickOffset
);
return
;
}
if
(
groupData
==
null
)
{
groupData
=
SelectGroups
.
getInstance
(
session
,
expressions
,
isGroupQuery
,
groupIndex
);
}
groupData
.
reset
();
try
{
int
rowNumber
=
0
;
setCurrentRowNumber
(
0
);
int
sampleSize
=
getSampleSizeValue
(
session
);
while
(
topTableFilter
.
next
())
{
setCurrentRowNumber
(
rowNumber
+
1
);
if
(
isConditionMet
())
{
rowNumber
++;
groupData
.
nextSource
();
updateAgg
(
columnCount
,
true
);
if
(
sampleSize
>
0
&&
rowNumber
>=
sampleSize
)
{
break
;
gatherGroup
(
columnCount
,
true
);
processGroupResult
(
columnCount
,
result
,
offset
,
quickOffset
);
}
finally
{
groupData
.
reset
();
}
}
private
void
queryGroupWindow
(
int
columnCount
,
LocalResult
result
,
long
offset
,
boolean
quickOffset
)
{
if
(
groupData
==
null
)
{
groupData
=
SelectGroups
.
getInstance
(
session
,
expressions
,
isGroupQuery
,
groupIndex
);
}
groupData
.
done
();
for
(
ValueArray
currentGroupsKey
;
(
currentGroupsKey
=
groupData
.
next
())
!=
null
;)
{
offset
=
processGroupedRow
(
columnCount
,
result
,
offset
,
quickOffset
,
currentGroupsKey
);
groupData
.
reset
();
try
{
gatherGroup
(
columnCount
,
false
);
while
(
groupData
.
next
()
!=
null
)
{
updateAgg
(
columnCount
,
true
);
}
groupData
.
done
();
processGroupResult
(
columnCount
,
result
,
offset
,
quickOffset
);
}
finally
{
groupData
.
reset
();
}
...
...
@@ -390,6 +395,14 @@ public class Select extends Query {
}
groupData
.
reset
();
try
{
gatherGroup
(
columnCount
,
false
);
processGroupResult
(
columnCount
,
result
,
offset
,
quickOffset
);
}
finally
{
groupData
.
reset
();
}
}
private
void
gatherGroup
(
int
columnCount
,
boolean
window
)
{
int
rowNumber
=
0
;
setCurrentRowNumber
(
0
);
int
sampleSize
=
getSampleSizeValue
(
session
);
...
...
@@ -398,19 +411,13 @@ public class Select extends Query {
if
(
isConditionMet
())
{
rowNumber
++;
groupData
.
nextSource
();
updateAgg
(
columnCount
,
false
);
updateAgg
(
columnCount
,
window
);
if
(
sampleSize
>
0
&&
rowNumber
>=
sampleSize
)
{
break
;
}
}
}
groupData
.
done
();
for
(
ValueArray
currentGroupsKey
;
(
currentGroupsKey
=
groupData
.
next
())
!=
null
;)
{
offset
=
processGroupedRow
(
columnCount
,
result
,
offset
,
quickOffset
,
currentGroupsKey
);
}
}
finally
{
groupData
.
reset
();
}
}
private
void
updateAgg
(
int
columnCount
,
boolean
window
)
{
...
...
@@ -422,8 +429,8 @@ public class Select extends Query {
}
}
private
long
processGroupedRow
(
int
columnCount
,
LocalResult
result
,
long
offset
,
boolean
quickOffset
,
ValueArray
currentGroupsKey
)
{
private
void
processGroupResult
(
int
columnCount
,
LocalResult
result
,
long
offset
,
boolean
quickOffset
)
{
for
(
ValueArray
currentGroupsKey
;
(
currentGroupsKey
=
groupData
.
next
())
!=
null
;
)
{
Value
[]
keyValues
=
currentGroupsKey
.
getList
();
Value
[]
row
=
new
Value
[
columnCount
];
for
(
int
j
=
0
;
groupIndex
!=
null
&&
j
<
groupIndex
.
length
;
j
++)
{
...
...
@@ -437,15 +444,15 @@ public class Select extends Query {
row
[
j
]
=
expr
.
getValue
(
session
);
}
if
(
isHavingNullOrFalse
(
row
))
{
return
offset
;
continue
;
}
if
(
quickOffset
&&
offset
>
0
)
{
offset
--;
return
offset
;
continue
;
}
row
=
keepOnlyDistinct
(
row
,
columnCount
);
result
.
addRow
(
row
);
return
offset
;
}
}
/**
...
...
@@ -746,7 +753,11 @@ public class Select extends Query {
if
(
isQuickAggregateQuery
)
{
queryQuick
(
columnCount
,
to
,
quickOffset
&&
offset
>
0
);
}
else
if
(
isWindowQuery
)
{
if
(
isGroupQuery
)
{
queryGroupWindow
(
columnCount
,
result
,
offset
,
quickOffset
);
}
else
{
queryWindow
(
columnCount
,
result
,
offset
,
quickOffset
);
}
}
else
if
(
isGroupQuery
)
{
if
(
isGroupSortedQuery
)
{
lazyResult
=
queryGroupSorted
(
columnCount
,
to
,
offset
,
quickOffset
);
...
...
@@ -943,10 +954,6 @@ public class Select extends Query {
throw
DbException
.
get
(
ErrorCode
.
WITH_TIES_WITHOUT_ORDER_BY
);
}
if
(
isWindowQuery
&&
isGroupQuery
)
{
throw
DbException
.
getUnsupportedException
(
"Window functions in group query are not currently supported."
);
}
Database
db
=
session
.
getDatabase
();
// first the select list (visible columns),
...
...
@@ -1437,6 +1444,24 @@ public class Select extends Query {
return
isQuickAggregateQuery
;
}
/**
* Checks if this query is a group query.
*
* @return whether this query is a group query.
*/
public
boolean
isGroupQuery
()
{
return
isGroupQuery
;
}
/**
* Checks if this query contains window functions.
*
* @return whether this query contains window functions
*/
public
boolean
isWindowQuery
()
{
return
isWindowQuery
;
}
@Override
public
void
addGlobalCondition
(
Parameter
param
,
int
columnId
,
int
comparisonType
)
{
...
...
h2/src/main/org/h2/command/dml/SelectGroups.java
浏览文件 @
356414ab
...
...
@@ -127,6 +127,7 @@ public abstract class SelectGroups {
if
(
cursor
.
hasNext
())
{
Map
.
Entry
<
ValueArray
,
Object
[]>
entry
=
cursor
.
next
();
currentGroupByExprData
=
entry
.
getValue
();
currentGroupRowId
++;
return
entry
.
getKey
();
}
return
null
;
...
...
h2/src/main/org/h2/expression/aggregate/Aggregate.java
浏览文件 @
356414ab
...
...
@@ -291,6 +291,15 @@ public class Aggregate extends AbstractAggregate {
@Override
public
void
updateAggregate
(
Session
session
,
boolean
window
)
{
if
(
window
!=
(
over
!=
null
))
{
if
(!
window
&&
select
.
isWindowQuery
())
{
if
(
on
!=
null
)
{
on
.
updateAggregate
(
session
,
false
);
}
if
(
filterCondition
!=
null
)
{
filterCondition
.
updateAggregate
(
session
,
false
);
}
over
.
updateAggregate
(
session
,
false
);
}
return
;
}
// TODO aggregates: check nested MIN(MAX(ID)) and so on
...
...
@@ -311,8 +320,10 @@ public class Aggregate extends AbstractAggregate {
lastGroupRowId
=
groupRowId
;
if
(
over
!=
null
)
{
if
(!
select
.
isGroupQuery
())
{
over
.
updateAggregate
(
session
,
true
);
}
}
if
(
filterCondition
!=
null
)
{
if
(!
filterCondition
.
getBooleanValue
(
session
))
{
return
;
...
...
h2/src/test/org/h2/test/scripts/functions/aggregate/array-agg.sql
浏览文件 @
356414ab
...
...
@@ -119,10 +119,44 @@ SELECT ARRAY_AGG(ID) FILTER (WHERE ID < 3 OR ID > 4) OVER (PARTITION BY NAME), N
>
rows
(
ordered
):
6
SELECT
ARRAY_AGG
(
SUM
(
ID
))
OVER
()
FROM
TEST
;
>
exception
FEATURE_NOT_SUPPORTED_1
>
ARRAY_AGG
(
SUM
(
ID
))
OVER
()
>
--------------------------
>
(
21
)
>
rows
:
1
SELECT
ARRAY_AGG
(
ID
)
OVER
()
FROM
TEST
GROUP
BY
ID
;
>
exception
FEATURE_NOT_SUPPORTED_1
>
ARRAY_AGG
(
ID
)
OVER
()
>
---------------------
>
(
1
,
2
,
3
,
4
,
5
,
6
)
>
(
1
,
2
,
3
,
4
,
5
,
6
)
>
(
1
,
2
,
3
,
4
,
5
,
6
)
>
(
1
,
2
,
3
,
4
,
5
,
6
)
>
(
1
,
2
,
3
,
4
,
5
,
6
)
>
(
1
,
2
,
3
,
4
,
5
,
6
)
>
rows
:
6
SELECT
ARRAY_AGG
(
NAME
)
OVER
(
PARTITION
BY
NAME
)
FROM
TEST
GROUP
BY
NAME
;
>
ARRAY_AGG
(
NAME
)
OVER
(
PARTITION
BY
NAME
)
>
----------------------------------------
>
(
a
)
>
(
b
)
>
(
c
)
>
rows
:
3
SELECT
ARRAY_AGG
(
ARRAY_AGG
(
ID
))
OVER
(
PARTITION
BY
NAME
),
NAME
FROM
TEST
GROUP
BY
NAME
;
>
ARRAY_AGG
(
ARRAY_AGG
(
ID
))
OVER
(
PARTITION
BY
NAME
)
NAME
>
------------------------------------------------- ----
>
((
1
,
2
))
a
>
((
3
))
b
>
((
4
,
5
,
6
))
c
>
rows
:
3
SELECT
ARRAY_AGG
(
ARRAY_AGG
(
ID
))
OVER
(
PARTITION
BY
NAME
),
NAME
FROM
TEST
GROUP
BY
NAME
OFFSET
1
ROW
;
>
ARRAY_AGG
(
ARRAY_AGG
(
ID
))
OVER
(
PARTITION
BY
NAME
)
NAME
>
------------------------------------------------- ----
>
((
3
))
b
>
((
4
,
5
,
6
))
c
>
rows
:
2
DROP
TABLE
TEST
;
>
ok
h2/src/test/org/h2/test/scripts/functions/aggregate/sum.sql
浏览文件 @
356414ab
...
...
@@ -40,3 +40,11 @@ select sum(v) from test;
drop
table
test
;
>
ok
SELECT
X
,
COUNT
(
*
),
SUM
(
COUNT
(
*
))
OVER
()
FROM
VALUES
(
1
),
(
1
),
(
1
),
(
1
),
(
2
),
(
2
),
(
3
)
T
(
X
)
GROUP
BY
X
;
>
X
COUNT
(
*
)
SUM
(
COUNT
(
*
))
OVER
()
>
-
-------- ---------------------
>
1
4
7
>
2
2
7
>
3
1
7
>
rows
:
3
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论