jayzhan211 commented on code in PR #6885:
URL: https://github.com/apache/arrow-datafusion/pull/6885#discussion_r1276960058
##########
datafusion/sql/src/expr/mod.rs:
##########
@@ -70,6 +71,18 @@ impl<'a, S: ContextProvider> SqlToRel<'a, S> {
stack.push(StackEntry::SQLExpr(right));
stack.push(StackEntry::SQLExpr(left));
}
+ SQLExpr::JsonAccess {
+ left,
+ operator,
+ right,
+ } => {
+ // Note the order that we push the entries to the
stack
+ // is important. We want to visit the left node
first.
Review Comment:
why should we visit the left node first?
--
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]