-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change array_agg
to return null
on no input rather than empty list
#11299
Merged
Merged
Changes from 2 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
8e67fcc
change array agg semantic for empty result
jayzhan211 13aaf09
return null
jayzhan211 8d57ae8
fix test
jayzhan211 b4747a4
fix order sensitive
jayzhan211 7e23569
fix test
jayzhan211 b4ab126
add more test
jayzhan211 362bd6a
Merge remote-tracking branch 'upstream/main' into array-agg-no-row
jayzhan211 81b8cb6
fix null
jayzhan211 248c0ee
fix multi-phase case
jayzhan211 fb8a678
add comment
jayzhan211 9fa5e6a
cleanup
jayzhan211 668a0d9
Merge remote-tracking branch 'upstream/main' into array-agg-no-row
jayzhan211 701b12a
fix clone
jayzhan211 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1694,7 +1694,7 @@ SELECT array_agg(c13) FROM (SELECT * FROM aggregate_test_100 ORDER BY c13 LIMIT | |
query ? | ||
SELECT array_agg(c13) FROM (SELECT * FROM aggregate_test_100 LIMIT 0) test | ||
---- | ||
[] | ||
NULL | ||
|
||
# csv_query_array_agg_one | ||
query ? | ||
|
@@ -1753,31 +1753,12 @@ NULL 4 29 1.260869565217 123 -117 23 | |
NULL 5 -194 -13.857142857143 118 -101 14 | ||
NULL NULL 781 7.81 125 -117 100 | ||
|
||
# TODO: array_agg_distinct output is non-deterministic -- rewrite with array_sort(list_sort) | ||
# unnest is also not available, so manually unnesting via CROSS JOIN | ||
# additional count(1) forces array_agg_distinct instead of array_agg over aggregated by c2 data | ||
# | ||
# select with count to forces array_agg_distinct function, since single distinct expression is converted to group by by optimizer | ||
# csv_query_array_agg_distinct | ||
query III | ||
WITH indices AS ( | ||
SELECT 1 AS idx UNION ALL | ||
SELECT 2 AS idx UNION ALL | ||
SELECT 3 AS idx UNION ALL | ||
SELECT 4 AS idx UNION ALL | ||
SELECT 5 AS idx | ||
) | ||
SELECT data.arr[indices.idx] as element, array_length(data.arr) as array_len, dummy | ||
FROM ( | ||
SELECT array_agg(distinct c2) as arr, count(1) as dummy FROM aggregate_test_100 | ||
) data | ||
CROSS JOIN indices | ||
ORDER BY 1 | ||
---- | ||
1 5 100 | ||
2 5 100 | ||
3 5 100 | ||
4 5 100 | ||
5 5 100 | ||
query ?I | ||
SELECT array_sort(array_agg(distinct c2)), count(1) FROM aggregate_test_100 | ||
---- | ||
[1, 2, 3, 4, 5] 100 | ||
|
||
# aggregate_time_min_and_max | ||
query TT | ||
|
@@ -2732,6 +2713,16 @@ SELECT COUNT(DISTINCT c1) FROM test | |
|
||
# TODO: aggregate_with_alias | ||
|
||
# test_approx_percentile_cont_decimal_support | ||
query TI | ||
SELECT c1, approx_percentile_cont(c2, cast(0.85 as decimal(10,2))) apc FROM aggregate_test_100 GROUP BY 1 ORDER BY 1 | ||
---- | ||
a 4 | ||
b 5 | ||
c 4 | ||
d 4 | ||
e 4 | ||
|
||
# array_agg_zero | ||
query ? | ||
SELECT ARRAY_AGG([]) | ||
|
@@ -2744,28 +2735,84 @@ SELECT ARRAY_AGG([1]) | |
---- | ||
[[1]] | ||
|
||
# test_approx_percentile_cont_decimal_support | ||
query TI | ||
SELECT c1, approx_percentile_cont(c2, cast(0.85 as decimal(10,2))) apc FROM aggregate_test_100 GROUP BY 1 ORDER BY 1 | ||
# test array_agg with no row qualified | ||
statement ok | ||
create table t(a int, b float, c bigint) as values (1, 1.2, 2); | ||
|
||
query ? | ||
select array_agg(a) from t where a > 2; | ||
---- | ||
a 4 | ||
b 5 | ||
c 4 | ||
d 4 | ||
e 4 | ||
NULL | ||
|
||
query ? | ||
select array_agg(b) from t where b > 3.1; | ||
---- | ||
NULL | ||
|
||
# array_agg_zero | ||
query ? | ||
SELECT ARRAY_AGG([]); | ||
select array_agg(c) from t where c > 3; | ||
---- | ||
[[]] | ||
NULL | ||
|
||
# array_agg_one | ||
query ?I | ||
select array_agg(c), count(1) from t where c > 3; | ||
---- | ||
NULL 0 | ||
|
||
# returns 0 rows if group by is applied | ||
query ? | ||
SELECT ARRAY_AGG([1]); | ||
select array_agg(a) from t where a > 3 group by a; | ||
---- | ||
[[1]] | ||
|
||
query ?I | ||
select array_agg(a), count(1) from t where a > 3 group by a; | ||
---- | ||
|
||
# TODO: Expect NULL, got empty list | ||
query ? | ||
select array_agg(distinct a) from t where a > 3; | ||
alamb marked this conversation as resolved.
Show resolved
Hide resolved
|
||
---- | ||
[] | ||
|
||
query ?I | ||
select array_agg(distinct a), count(1) from t where a > 3; | ||
---- | ||
NULL 0 | ||
|
||
# returns 0 rows if group by is applied | ||
query ? | ||
select array_agg(distinct a) from t where a > 3 group by a; | ||
---- | ||
|
||
query ?I | ||
select array_agg(distinct a), count(1) from t where a > 3 group by a; | ||
---- | ||
|
||
statement ok | ||
drop table t; | ||
|
||
# test with no values | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add |
||
statement ok | ||
create table t(a int, b float, c bigint); | ||
|
||
query ? | ||
select array_agg(a) from t; | ||
---- | ||
NULL | ||
|
||
query ? | ||
select array_agg(b) from t; | ||
---- | ||
NULL | ||
|
||
query ? | ||
select array_agg(c) from t; | ||
---- | ||
NULL | ||
|
||
statement ok | ||
drop table t; | ||
|
||
|
||
# array_agg_i32 | ||
statement ok | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I rewrite it to the simpler one!