-
Notifications
You must be signed in to change notification settings - Fork 638
fix(insert): user can specify insert table in specified database #10285
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
Merged
Conversation
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
1 task
193e4cc
to
894ab3d
Compare
cpcloud
reviewed
Oct 9, 2024
cpcloud
reviewed
Oct 9, 2024
c92a4fa
to
0b9ca54
Compare
cpcloud
approved these changes
Oct 9, 2024
619532f
to
e1c0e72
Compare
What do you think @cpcloud -- should we |
I'll push up a commit to |
A user reported this issue on Zulip. We weren't passing `catalog.database` information to `get_schema` inside of `_build_insert_from_table` which caused inserts to fail if user had specified a `database` argument, because we were looking in the wrong db for the existing table to pull the `schema` from.
…at happens in the yielded-to function
606dccb
to
8cc9d4f
Compare
Clouds are passing:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug
Incorrect behavior inside of ibis
clickhouse
The ClickHouse backend
flink
Issues or PRs related to Flink
sql
Backends that generate SQL
tests
Issues or PRs related to tests
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.
Description of changes
A user reported this issue on Zulip.
We weren't passing
catalog.database
information toget_schema
insideof
_build_insert_from_table
which caused inserts to fail if user hadspecified a
database
argument, because we were looking in the wrong dbfor the existing table to pull the
schema
from.Resolves #10281.