-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-29796][SQL][TESTS] HiveExternalCatalogVersionsSuite should ignore preview release
#26428
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
[SPARK-29796][SQL][TESTS] HiveExternalCatalogVersionsSuite should ignore preview release
#26428
Conversation
|
Hi, @cloud-fan and @jiangxb1987 . |
HiveExternalCatalogVersionsSuite should ignore preview releaseHiveExternalCatalogVersionsSuite should ignore preview release
jiangxb1987
left a comment
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.
LGTM, thanks for fixing this @dongjoon-hyun !
|
Thank you, @jiangxb1987 . |
…gnore preview release ### What changes were proposed in this pull request? This aims to exclude the `preview` release to recover `HiveExternalCatalogVersionsSuite`. Currently, new preview release breaks `branch-2.4` PRBuilder since yesterday. New release (especially `preview`) should not affect `branch-2.4`. - #26417 (Failed 4 times) ### Why are the changes needed? **BEFORE** ```scala scala> scala.io.Source.fromURL("https://dist.apache.org/repos/dist/release/spark/").mkString.split("\n").filter(_.contains("""<li><a href="spark-""")).map("""<a href="spark-(\d.\d.\d)/">""".r.findFirstMatchIn(_).get.group(1)) java.util.NoSuchElementException: None.get ``` **AFTER** ```scala scala> scala.io.Source.fromURL("https://dist.apache.org/repos/dist/release/spark/").mkString.split("\n").filter(_.contains("""<li><a href="spark-""")).filterNot(_.contains("preview")).map("""<a href="spark-(\d.\d.\d)/">""".r.findFirstMatchIn(_).get.group(1)) res5: Array[String] = Array(2.3.4, 2.4.4) ``` ### Does this PR introduce any user-facing change? No. ### How was this patch tested? This should pass the PRBuilder. Closes #26428 from dongjoon-hyun/SPARK-HiveExternalCatalogVersionsSuite. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]> (cherry picked from commit da848b1) Signed-off-by: Dongjoon Hyun <[email protected]>
|
Nice, I was wondering why that was failing suddenly. |
|
Test build #113396 has finished for PR 26428 at commit
|
HyukjinKwon
left a comment
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.
Lgtm!
|
Thank you, @srowen and @HyukjinKwon . |
|
Thanks for fixing it very quickly! |
What changes were proposed in this pull request?
This aims to exclude the
previewrelease to recoverHiveExternalCatalogVersionsSuite. Currently, new preview release breaksbranch-2.4PRBuilder since yesterday. New release (especiallypreview) should not affectbranch-2.4.Why are the changes needed?
BEFORE
AFTER
Does this PR introduce any user-facing change?
No.
How was this patch tested?
This should pass the PRBuilder.