Uh oh!
There was an error while loading. Please reload this page.
[SPARK-36683][SQL] Add new built-in SQL functions: SEC and CSC - #33988
[SPARK-36683][SQL] Add new built-in SQL functions: SEC and CSC#33988yutoacts wants to merge 18 commits into
Conversation
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
sarutak
commented
Sep 14, 2021
Jenkins, add to whitelist. |
SparkQA
commented
Sep 14, 2021
Kubernetes integration test starting |
SparkQA
commented
Sep 14, 2021
Kubernetes integration test status failure |
For the Python code, it's better to follow @HyukjinKwon 's comments in #33992 |
SparkQA
commented
Sep 14, 2021
Test build #143242 has finished for PR 33988 at commit
|
yutoacts
commented
Sep 15, 2021
OK, and seems like #33992 could conflict with this PR. I'll wait for it to be merged before pushing test_functions.py. |
SparkQA
commented
Sep 15, 2021
Test build #143292 has finished for PR 33988 at commit
|
SparkQA
commented
Sep 15, 2021
Kubernetes integration test unable to build dist. exiting with code: 1 |
SparkQA
commented
Sep 15, 2021
Kubernetes integration test starting |
SparkQA
commented
Sep 15, 2021
Kubernetes integration test status failure |
SparkQA
commented
Sep 15, 2021
Test build #143295 has finished for PR 33988 at commit
|
Uh oh!
There was an error while loading. Please reload this page.
SparkQA
commented
Sep 17, 2021
Kubernetes integration test status failure |
SparkQA
commented
Sep 17, 2021
Test build #143400 has finished for PR 33988 at commit
|
sarutak
commented
Sep 17, 2021
@yutoacts you can use |
SparkQA
commented
Sep 17, 2021
Kubernetes integration test starting |
SparkQA
commented
Sep 17, 2021
Kubernetes integration test status failure |
SparkQA
commented
Sep 17, 2021
Kubernetes integration test starting |
SparkQA
commented
Sep 17, 2021
Kubernetes integration test status failure |
yutoacts
commented
Sep 17, 2021
Thank you. It should be fixed now. |
SparkQA
commented
Sep 17, 2021
Kubernetes integration test starting |
SparkQA
commented
Sep 17, 2021
Kubernetes integration test status failure |
SparkQA
commented
Sep 17, 2021
Kubernetes integration test starting |
SparkQA
commented
Sep 17, 2021
Kubernetes integration test starting |
SparkQA
commented
Sep 17, 2021
Kubernetes integration test status failure |
SparkQA
commented
Sep 17, 2021
Kubernetes integration test status failure |
SparkQA
commented
Sep 17, 2021
Test build #143402 has finished for PR 33988 at commit
|
SparkQA
commented
Sep 17, 2021
Test build #143404 has finished for PR 33988 at commit
|
SparkQA
commented
Sep 17, 2021
Test build #143407 has finished for PR 33988 at commit
|
sarutak
commented
Sep 20, 2021
Merged to |
### What changes were proposed in this pull request? Add secant and cosecant as R functions. ### Why are the changes needed? [SEC and CSC have been added](#33988) thus these functions need R support. ### Does this PR introduce _any_ user-facing change? Yes, users can now call those functions as R functions. ### How was this patch tested? unit tests added. Closes#34067 from yutoacts/SPARK-36824. Authored-by: Yuto Akutsu <yuto.akutsu@oss.nttdata.com> Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
What changes were proposed in this pull request?
Add new built-in SQL functions: secant and cosecant, and add them as Scala and Python functions.
Why are the changes needed?
Cotangent has been supported in Spark SQL but Secant and Cosecant are missing though I believe they can be used as much as cot.
Related Links: SPARK-20751SPARK-36660
Does this PR introduce any user-facing change?
Yes, users can now use these functions.
How was this patch tested?
Unit tests