-
-
Notifications
You must be signed in to change notification settings - Fork 240
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 support for CREATE TABLE PARTITION OF #825
Comments
I totally agree with you |
This issue has been automatically marked as stale because it has not had activity in the last 30 days. If there is no update within the next 7 days, this issue will be closed. |
Still relevant |
I am considering trying to implement the What are the maintainers' thoughts on this matter? |
query_create_table.go#L116 |
According to docs, currently only
PARTITION BY
is supported butPARTITION OF
is not.i.e. for the provided example
You can write bun query for the first statement:
But you cannot write a query for the second statement in the same manner.
Although it is possible to use
db.Exec(...)
with plain SQL, we would be happy to see support forPARTITION OF
in ORM CreateTable query.The text was updated successfully, but these errors were encountered: