-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-49730][SQL] classify syntax errors for pgsql, mysql, sqlserver and h2 #48368
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
Closed
Closed
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
3f36b20
classify syntax errors for pgsql, mysql and sqlserver
milastdbx 35100c2
Merge branch 'apache:master' into syntaxErrorsJdbc
ivanjevtic-db a6a9f93
Add isRuntime arg to classifyException signature
ivanjevtic-db 2b8926d
Merge branch 'syntaxErrorsJdbc' of github.com:ivanjevtic-db/spark int…
ivanjevtic-db a31f363
Merge branch 'apache:master' into syntaxErrorsJdbc
ivanjevtic-db e205788
Finish revert
ivanjevtic-db 1d54e5a
Merge branch 'syntaxErrorsJdbc' of github.com:ivanjevtic-db/spark int…
ivanjevtic-db bd1fb3f
Remove unused import
ivanjevtic-db c68ab5b
Remove deprecated function from subclass
ivanjevtic-db a65b3c4
Remove unused import
ivanjevtic-db 17632b1
Fix comments
ivanjevtic-db 977792c
Fix wrong override
ivanjevtic-db 935d8f3
Merge branch 'Change-classify-exception-function-signature' into synt…
ivanjevtic-db 685c212
Classify syntax errors for pgsql, mysql, sqlserver
ivanjevtic-db 21734fd
Resolve conflicts
ivanjevtic-db 0793158
Fix error-conditions messages
ivanjevtic-db 5260e92
Merge remote-tracking branch 'origin/master' into syntax-errors-jdbc
ivanjevtic-db 6ec9aa3
Fix syntax and schema errors, Add tests
ivanjevtic-db 894fab6
Merge branch 'master' into syntax-errors-jdbc
ivanjevtic-db 19cbc07
Remove unused import
ivanjevtic-db c587b07
Merge branch 'syntax-errors-jdbc' of github.com:ivanjevtic-db/spark i…
ivanjevtic-db 1edcb97
Remove unused import
ivanjevtic-db 0db4dc6
Fix parameters in tests
ivanjevtic-db 387563f
Use checkError with matchPVals=true
ivanjevtic-db 737d1db
Match parameters to query
ivanjevtic-db 8b9ef47
Fix checkError to check for value too
ivanjevtic-db 96c59ac
Remove commented tests
ivanjevtic-db d3d224f
Fix
ivanjevtic-db 94b64da
Remove failed test
ivanjevtic-db c848332
Fix error-conditions.json
ivanjevtic-db 1c19246
Sort by name
ivanjevtic-db 170e194
Remove sync changes from error-conditions.json
ivanjevtic-db File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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.
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.
Since I am using
checkErrorMatchPValsfunction, either I should:I am using
checkErrorMatchPValsin the first place, since I have some parameters that can only be checked with regex, but for some parameters I have the exact value.