Skip to content

Commit

Permalink
Octetlength in protobuf should use the octet_length function (#1834)
Browse files Browse the repository at this point in the history
  • Loading branch information
carols10cents authored Feb 15, 2022
1 parent 7a46084 commit d79ca16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ballista/rust/core/src/serde/logical_plan/from_proto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,7 @@ impl TryInto<Expr> 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()?)),
Expand Down

0 comments on commit d79ca16

Please sign in to comment.