-
Notifications
You must be signed in to change notification settings - Fork 244
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
Move RapidsErrorUtils
to org.apache.spark.sql.shims
package
#5745
Move RapidsErrorUtils
to org.apache.spark.sql.shims
package
#5745
Conversation
Signed-off-by: remzi <13716567376yh@gmail.com>
build |
@@ -14,7 +14,7 @@ | |||
* limitations under the License. | |||
*/ | |||
|
|||
package com.nvidia.spark.rapids.shims | |||
package org.apache.spark.sql.rapids.shims |
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.
we wouldn't need to move this one, correct? They only changed in 3.2.2 and later?
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 file a followup issue
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.
going to merge to fix builds we can discuss if we want to move the < 3.2.1 back after
Curious to know why this was merged to 22.08 and not 22.06. |
The fix is for Spark-3.2.2 which is as yet unreleased, so would not be targeted for 22.06. |
Signed-off-by: remzi 13716567376yh@gmail.com
Close #5744
The
QueryExecutionErrors
has been declared asprivate[sql]
in Spark 330+ and Spark 321. Update the code to fix build error.