Weijun-H commented on code in PR #9019:
URL: https://github.com/apache/arrow-datafusion/pull/9019#discussion_r1468750829
##########
datafusion/proto/src/logical_plan/from_proto.rs:
##########
@@ -1813,6 +1814,7 @@ pub fn parse_expr(
ScalarFunction::StructFun => {
Ok(struct_fun(parse_expr(&args[0], registry)?))
}
+ ScalarFunction::ToDate => Ok(struct_fun(parse_expr(&args[0],
registry)?)), //TODO: ensure how to fill it
Review Comment:
It should be
```suggestion
ScalarFunction::ToDate => Ok(to_date(parse_expr(&args[0],
registry)?)),
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]