-
Notifications
You must be signed in to change notification settings - Fork 603
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
refactor(table-api): unify exception type for all backends to TableNotFound
when a table does not exist
#9695
Merged
Merged
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
a7b2efe
refactor: unify exception when TableNotFound
ncclementi efb1381
chore: update test_create_and_drop_table postgres
ncclementi e9604c8
chore: catch original mysql no table exc and reraise
ncclementi c8b1bde
chore: check table name is in the message
ncclementi 8a4f3c8
chore: update message to match regex
ncclementi fe24900
chore: remove redundant attribute
ncclementi c5366e4
chore: fix exception catching in mysql
ncclementi 5b0d6a6
chore: fix clickhouse exception catch
ncclementi 33f2fbb
chore: fix exception catch in datafusion
ncclementi 2f865da
chore: fix exception catch in pandas and dask
ncclementi 33c7507
chore: fix exception catching in mysql
ncclementi ea4571b
chore: fix exception catching in polars
ncclementi f6f3103
chore: fix regex in trino test
ncclementi 14bb13c
chore: add comment about pyspark exception catch
ncclementi b79ca92
chore: fix druid exception catch
ncclementi 93f6810
chore: exception catch for flink
ncclementi 71368f7
chore: fix druid exception and test case
ncclementi 00be355
chore: fix druid exception in test_window
ncclementi 9dde9d4
chore: add error to noimpl param to druid test window
ncclementi 4f854fe
chore(impala): implement tablenotfound raising
cpcloud 4d9c14b
chore(exasol): implement tablenotfound raising
cpcloud ca1f6c6
chore: update exception
ncclementi dd10ede
chore: update match
ncclementi ba27187
chore: clean up
ncclementi 1652e50
chore: clean up
ncclementi 6b67f4b
chore: update table name for test
ncclementi 6551046
chore: clean up
ncclementi c13dac9
chore: cleanup pyspark exception handling
ncclementi 20af342
chore: cleanup test
ncclementi 52df21c
chore: fix import error in pyspark 3.3
ncclementi 9fe1ed9
chore(snowflake): please, no more
cpcloud afccae4
chore(bigquery): raise tablenotfound and consolidate
cpcloud 33bf6a1
Apply suggestions from code review
cpcloud e501cc2
chore: fix typo
ncclementi 0541e17
chore(pyspark): handle the difference between 3.3 and 3.5
cpcloud ecc40e7
Apply suggestions from code review
cpcloud 14ccba6
chore(druid): check for table existence instead of pattern matching
cpcloud a087c14
chore: comment about flink; ignore case and table name
cpcloud 1e2992f
chore: fix conflicts
ncclementi 061860a
chore: swap in common exception for tablenotfound
gforsyth c22979f
chore: address review comments
ncclementi 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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
Oops, something went wrong.
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.
nice, thanks for adding this. It's way more clear.