Skip to content
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

refactor: use secrecy SerectString to hold secrets option #3804

Merged
merged 16 commits into from
Apr 29, 2024
Prev Previous commit
Next Next commit
fixup
Signed-off-by: tison <wander4096@gmail.com>
  • Loading branch information
tisonkun committed Apr 26, 2024
commit aa0742e80b927953ae62a3862d10a69d1f0e363c
2 changes: 1 addition & 1 deletion src/sql/src/statements/option_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl OptionMap {
}
for key in self.secrets.keys().sorted() {
if self.secrets.contains_key(key) {
result.push(format!("{key} = '******"));
result.push(format!("{key} = '******'"));
}
}
result
Expand Down
Loading