-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Spark3.5: Standardizing Error Handling in Iceberg Spark Module - TestViews #11993
base: main
Are you sure you want to change the base?
Conversation
@@ -213,10 +213,13 @@ public void readFromViewUsingNonExistingTable() throws NoSuchTableException { | |||
|
|||
assertThatThrownBy(() -> sql("SELECT * FROM %s", viewName)) | |||
.isInstanceOf(AnalysisException.class) | |||
.hasMessageContaining( |
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.
I would prefer if we could keep the error msg check. I think it's perfectly fine to keep this and then just add the .satisfies
check below
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.
If we really only care about the error class, then an alternative check could be the one below:
assertThatThrownBy(() -> sql("SELECT * FROM %s", viewName))
.isInstanceOf(AnalysisException.class)
.hasMessageContaining(
String.format(
"The table or view `%s`.`%s`.`non_existing` cannot be found",
catalogName, NAMESPACE))
.asInstanceOf(InstanceOfAssertFactories.type(AnalysisException.class))
.extracting(AnalysisException::getErrorClass)
.isEqualTo("INVALID_VIEW_TEXT");
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.
Thanks @nastra for your comment! I'm concerned that checking for specific error messages might make the tests a bit fragile. While this particular error message seems stable, others might change between versions. What do you think?
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.
I'd say let's keep the error messages for now until we actually see that those become more difficult to maintain because they change more frequently (which I actually don't expect to happen). The reason I'd like to keep the error msg is to make sure that we properly ensure and see what a typical end user would see when a certain error condition happens
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.
Thanks @nastra! I see your point, and it makes sense to me. I will add back the error messages.
This pull request has been marked as stale due to 30 days of inactivity. It will be closed in 1 week if no further activity occurs. If you think that’s incorrect or this pull request requires a review, please simply write any comment. If closed, you can revive the PR at any time and @mention a reviewer or discuss it on the [email protected] list. Thank you for your contributions. |
Changing error validation from checking error message to validating error classes in Spark module, starting from
TestViews
. Here is the original discussion.