-
Notifications
You must be signed in to change notification settings - Fork 332
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
Support create table xxx like yyy
#2509
Comments
It's a useful feature, let's move it to the following release plan. |
I want to try to implement this |
@KKould this feature is nontrivial. What's your plan in implementing it? |
I originally planned to refer to |
Sounds good. Let me assign it to you |
I'll try to implement it this weekend |
What problem does the new feature solve?
When i migrate tests from DuckDB,I found that we don't support this statement
create table xxx like yyy
,now we must useshow create table yyy
statement first,and then copy thecreate
statement ofyyy
to createxxx
.Should we support this statement?It seems that we can't copy constraint from
yyy
toxxx
when we usecreate table xxx like yyy
directly :What does the feature do?
Support statement
create table xxx like yyy
Implementation challenges
No response
The text was updated successfully, but these errors were encountered: