-
Notifications
You must be signed in to change notification settings - Fork 590
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 SET <name> TO DEFAULT
and RESET <name>
#8851
Comments
@Gun9niR Can you please take a look? |
IIUC, this value can only be the compiled-in default in our case, since we don't provide any way to change their initial values of session parameters. |
Just FYI the pgwire protocol can specify risingwave/src/utils/pgwire/src/pg_protocol.rs Lines 268 to 278 in 3091f16
To see it in effect, add print
|
Then for For system parameters, according to PostgreSQL's doc about
So I guess |
This issue has been open for 60 days with no activity. If you think it is still relevant today, and needs to be done in the near future, you can comment to update the status, or just manually remove the You can also confidently close this issue as not planned to keep our backlog clean. |
Is your feature request related to a problem? Please describe.
According to the documentation of PostgreSQL:
Currently, we treat
DEFAULT
literally as a string, which behaves incorrectly.Describe the solution you'd like
Support this syntax along with #8850. There're two columns named
boot_val
andreset_val
for each variable and parameter in thepg_catalog.pg_settings
. Should we make this the source of the truth?Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: