[SPARK-37613][SQL] Support ANSI Aggregate Function: regr_count#34880
[SPARK-37613][SQL] Support ANSI Aggregate Function: regr_count#34880beliefer wants to merge 15 commits intoapache:masterfrom
Conversation
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #146136 has finished for PR 34880 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Kubernetes integration test status failure |
|
Test build #146154 has finished for PR 34880 at commit
|
|
ping @MaxGekk @gengliangwang cc @cloud-fan |
|
Kubernetes integration test starting |
|
Test build #146153 has finished for PR 34880 at commit
|
|
retest this please |
|
Kubernetes integration test status failure |
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #146173 has finished for PR 34880 at commit
|
|
Test build #146182 has finished for PR 34880 at commit
|
|
Test build #146248 has finished for PR 34880 at commit
|
|
retest this please |
|
Kubernetes integration test starting |
|
please also address #34880 (comment) |
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Kubernetes integration test status failure |
|
Kubernetes integration test starting |
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #146269 has finished for PR 34880 at commit
|
|
Kubernetes integration test status failure |
|
retest this please |
|
please also rerun the github actions (I don't have permissions to do so as the github action runs on your account) |
|
Test build #146264 has finished for PR 34880 at commit
|
OK |
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #146274 has finished for PR 34880 at commit
|
|
Test build #146283 has finished for PR 34880 at commit
|
|
thanks, merging to master! |
|
@cloud-fan Thanks a lot! |
### What changes were proposed in this pull request? #34880 supported ANSI Aggregate Function: regr_count. But the docs of regr_count is not good enough. ### Why are the changes needed? Make the docs of regr_count more detailed. ### Does this PR introduce _any_ user-facing change? 'No'. New feature. ### How was this patch tested? N/A Closes #36258 from beliefer/SPARK-37613_followup. Authored-by: Jiaan Geng <beliefer@163.com> Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
### What changes were proposed in this pull request? #34880 supported ANSI Aggregate Function: regr_count. But the docs of regr_count is not good enough. ### Why are the changes needed? Make the docs of regr_count more detailed. ### Does this PR introduce _any_ user-facing change? 'No'. New feature. ### How was this patch tested? N/A Closes #36258 from beliefer/SPARK-37613_followup. Authored-by: Jiaan Geng <beliefer@163.com> Signed-off-by: Hyukjin Kwon <gurwls223@apache.org> (cherry picked from commit 1b106ea) Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
What changes were proposed in this pull request?
This PR used to support ANSI aggregate Function:
regr_countThe mainstream database supports
regr_countshow below:Teradata
https://docs.teradata.com/r/kmuOwjp1zEYg98JsB8fu_A/1skTm5SD0HD3Z~vii3hXAg
Snowflake
https://docs.snowflake.com/en/sql-reference/functions/regr_count.html#
Oracle
https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/REGR_-Linear-Regression-Functions.html#GUID-A675B68F-2A88-4843-BE2C-FCDE9C65F9A9
H2
http://www.h2database.com/html/functions-aggregate.html#regr_count
Postgresql
https://www.postgresql.org/docs/8.4/functions-aggregate.html
Sybase
https://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.help.sqlanywhere.12.0.0/dbreference/regr-count-function.html
Exasol
https://docs.exasol.com/sql_references/functions/alphabeticallistfunctions/regr_function.htm
Why are the changes needed?
regr_countis very useful.Does this PR introduce any user-facing change?
'No'. New feature.
How was this patch tested?
New tests.