You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 no-issue-activity label.
You can also confidently close this issue as not planned to keep our backlog clean.
Don't worry if you think the issue is still valuable to continue in the future.
It's searchable and can be reopened when it's time. 😄
Describe the bug
set_config ( setting_name text, new_value text, is_local boolean ) → text
When
set_config
accepts literals as its parameters, everything runs normally.Howerver, when handling a parameterized query, it does not work:
This is because the implementation of set_config only accepts string literals:
https://github.com/risingwavelabs/risingwave/blob/d488f65/src/frontend/src/binder/expr/function.rs#L1291-L1298
if let ExprImpl::Literal(literal) = &inputs[0] && let Some(ScalarImpl::Utf8(input)) = literal.get_data()
Error message/log
To Reproduce
Expected behavior
No response
How did you deploy RisingWave?
No response
The version of RisingWave
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: