Uh oh!
There was an error while loading. Please reload this page.
[SPARK-28278][SQL][PYTHON][TESTS] Convert and port 'except-all.sql' into UDF test base - #25090
[SPARK-28278][SQL][PYTHON][TESTS] Convert and port 'except-all.sql' into UDF test base#25090imback82 wants to merge 6 commits into
Conversation
Uh oh!
There was an error while loading. Please reload this page.
HyukjinKwon
commented
Jul 10, 2019
add to whitelist |
SparkQA
commented
Jul 10, 2019
Test build #107434 has finished for PR 25090 at commit
|
wangyum
commented
Jul 10, 2019
retest this please |
SparkQA
commented
Jul 10, 2019
Test build #107451 has finished for PR 25090 at commit
|
Uh oh!
There was an error while loading. Please reload this page.
SparkQA
commented
Jul 11, 2019
Test build #107501 has finished for PR 25090 at commit
|
HyukjinKwon
commented
Jul 18, 2019
HyukjinKwon
commented
Jul 18, 2019
retest this please |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
HyukjinKwon
commented
Jul 18, 2019
Looks fine otherwise. |
SparkQA
commented
Jul 18, 2019
Test build #107819 has finished for PR 25090 at commit
|
imback82
commented
Jul 18, 2019
@HyukjinKwon, I think I addressed all your comments. Please re-review this. Thanks! |
| -- Empty right relation | ||
| SELECT udf(c1) FROM tab1 | ||
| EXCEPT ALL | ||
| SELECT udf(c1) FROM tab2 WHERE udf(c1 > udf(6)); |
There was a problem hiding this comment.
Is it intentionally to do udf(6)? Not udf(c1) > 6?
There was a problem hiding this comment.
Yes, I am trying a different combination of udfs.
There was a problem hiding this comment.
Yea, it's kind of a bit random but let's test different cases while we're here..
SparkQA
commented
Jul 18, 2019
Test build #107825 has finished for PR 25090 at commit
|
viirya
commented
Jul 18, 2019
retest this please |
SparkQA
commented
Jul 18, 2019
Test build #107832 has finished for PR 25090 at commit
|
HyukjinKwon
commented
Jul 18, 2019
Looks there is no notable diff. Merged to master. |
What changes were proposed in this pull request?
This PR adds some tests converted from
except-all.sqlto test UDFs. Please see contribution guide of this umbrella ticket - SPARK-27921.Diff comparing to 'except-all.sql'
How was this patch tested?
Tested as guided in SPARK-27921.