-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-24208][SQL][FOLLOWUP] Move test cases to proper locations #21751
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
Conversation
|
Test build #92889 has finished for PR 21751 at commit
|
| assertAnalysisError(barrier, Seq("cannot resolve '`tbl.b`'")) | ||
| } | ||
|
|
||
| test("SPARK-24208: analysis fails on self-join with FlatMapGroupsInPandas") { |
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.
please also remove the corresponding unit test case
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.
sorry, I forgot that, I am doing it, thanks.
|
Test build #92921 has finished for PR 21751 at commit
|
| } | ||
|
|
||
| test("SPARK-24208: analysis fails on self-join with FlatMapGroupsInPandas") { | ||
| val pythonUdf = PythonUDF("pyUDF", null, |
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.
Nit:
"pyUDF",
null,
| StructType(Seq(StructField("a", LongType))), | ||
| Seq.empty, | ||
| PythonEvalType.SQL_GROUPED_MAP_PANDAS_UDF, | ||
| true) |
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.
Nit: udfDeterministic = true
|
Please follow the style suggestions in the future. LGTM Thanks! Merged to master |
|
sure, I'll keep them in mind. Sorry for the mistakes, I'll be more careful. Thanks @gatorsmile. |
What changes were proposed in this pull request?
The PR is a followup to move the test cases introduced by the original PR in their proper location.
How was this patch tested?
moved UTs