A query in MSQ would issue wrong error code#14531
Merged
abhishekagarwal87 merged 2 commits intoapache:masterfrom Jul 6, 2023
Merged
A query in MSQ would issue wrong error code#14531abhishekagarwal87 merged 2 commits intoapache:masterfrom
abhishekagarwal87 merged 2 commits intoapache:masterfrom
Conversation
…a RuntimeException. Now the RuntimeException is being replaced by an user facing DruidException of Invalid category which would allow calcite not to throw an uncategorized exception
pranavbhole
approved these changes
Jul 6, 2023
abhishekagarwal87
approved these changes
Jul 6, 2023
10 tasks
This was referenced Jul 6, 2023
Comment on lines
+124
to
+126
| throw DruidException.forPersona(DruidException.Persona.USER) | ||
| .ofCategory(DruidException.Category.INVALID_INPUT) | ||
| .build(e, e.getMessage()); |
Contributor
There was a problem hiding this comment.
For this one specifically, just so you know, there is an InvalidInput.exception() that you can use. This makes it part of the "invalidInput" group of exceptions instead of the "general" group of exceptions.
| "general" | ||
| ) | ||
| .expectMessageContains( | ||
| "Cannot construct instance of `org.apache.druid.segment.column.ColumnSignature`, problem: `java.lang.NullPointerException`\n" |
Contributor
There was a problem hiding this comment.
For this case specificaly, it would be great if the original NPE actually carried with it an indication of which field it expected to exist. That is, we likely need to get even deeper and make a better message for the NPE as well.
sergioferragut
pushed a commit
to sergioferragut/druid
that referenced
this pull request
Jul 21, 2023
with a RuntimeException. Now the RuntimeException is being replaced by an user facing DruidException of Invalid category which would allow calcite not to throw an uncategorized exception.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
with a RuntimeException. Now the RuntimeException is being replaced by an user facing DruidException of Invalid category which would allow calcite not to throw an uncategorized exception.
For a query like
the query failed like
After this change the expected behavior is
This PR has: