-
Notifications
You must be signed in to change notification settings - Fork 323
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
Add create_database_table
to Database Table
#6327
Comments
Clarifying the spec: I assume the idea here is to avoid materializing the data and use an INSERT+SELECT query here. If the target connection is different from the source, it will still fail and require explicit materialization of data (as inter-database transfer is not possible). |
Yes this should be on the same backend for this ticket. If a mixed backend we should error and require the user to be explicit. A |
Radosław Waśko reports a new STANDUP for the provided date (2023-04-28): Progress: Finished the implementation and got the PR ready for review. Well then I realised I forgot to add one test+check (same connection check), so will need to add that. It should be finished by 2023-04-28. Next Day: Next day I will be working on the #5159 task. Add the missing test/check and get the PR in. Start work on next task - probably will depend on the planning, will look into storage types as that was my original plan for next thing, but will adapt. |
This should allow for direct creation of a DB table based on a constructed DB query.
It should have the same API as #6326.
The text was updated successfully, but these errors were encountered: