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 a54b5d1 commit 7540b63Copy full SHA for 7540b63
datafusion/functions/src/string/octet_length.rs
@@ -101,7 +101,7 @@ impl ScalarUDFImpl for OctetLengthFunc {
101
if arr.is_null(i) {
102
builder.append_null();
103
} else {
104
- builder.append_value(arr.value_length(i) as i32);
+ builder.append_value(arr.value_length(i));
105
}
106
107
Ok(ColumnarValue::Array(Arc::new(builder.finish())))
@@ -111,7 +111,7 @@ impl ScalarUDFImpl for OctetLengthFunc {
111
112
113
114
- builder.append_value(arr.value_length(i) as i64);
115
116
117
0 commit comments