From d79ca1632da4bbddaa650c9c44fb6ffcfa4572e7 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" <193874+carols10cents@users.noreply.github.com> Date: Tue, 15 Feb 2022 01:15:14 -0500 Subject: [PATCH] Octetlength in protobuf should use the octet_length function (#1834) --- ballista/rust/core/src/serde/logical_plan/from_proto.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()?)),