We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd4fe34 commit 305d399Copy full SHA for 305d399
src/query/functions/src/scalars/string.rs
@@ -335,7 +335,7 @@ pub fn register(registry: &mut FunctionRegistry) {
335
vectorize_string_to_string(
336
|col| col.data.len() * 4 / 3 + col.len() * 4,
337
|val, output, ctx| {
338
- if let Err(err) = general_purpose::STANDARD.decode_slice(val, &mut output.data) {
+ if let Err(err) = general_purpose::STANDARD.decode_vec(val, &mut output.data) {
339
ctx.set_error(output.len(), err.to_string());
340
}
341
output.commit_row();
0 commit comments