diff --git a/ballista/rust/core/src/serde/logical_plan/from_proto.rs b/ballista/rust/core/src/serde/logical_plan/from_proto.rs index fb900e16771a..d4a28cf10490 100644 --- a/ballista/rust/core/src/serde/logical_plan/from_proto.rs +++ b/ballista/rust/core/src/serde/logical_plan/from_proto.rs @@ -880,7 +880,7 @@ impl TryInto for &protobuf::LogicalExprNode { Ok(signum((&args[0]).try_into()?)) } protobuf::ScalarFunction::Octetlength => { - Ok(length((&args[0]).try_into()?)) + Ok(octet_length((&args[0]).try_into()?)) } // // protobuf::ScalarFunction::Concat => Ok(concat((&args[0]).try_into()?)), protobuf::ScalarFunction::Lower => Ok(lower((&args[0]).try_into()?)),