We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b8e258 commit ce5bcfcCopy full SHA for ce5bcfc
src/query/sql/src/planner/binder/ddl/worker.rs
@@ -89,7 +89,7 @@ impl Binder {
89
set_options.extend(options.iter().map(|(k, v)| (k.to_lowercase(), v.clone())));
90
}
91
AlterWorkerAction::UnsetOptions { options } => {
92
- unset_options.extend(options.iter().map(|opt| opt.to_string()));
+ unset_options.extend(options.iter().map(|opt| opt.to_string().to_lowercase()));
93
94
AlterWorkerAction::Suspend => {
95
suspend = true;
0 commit comments