comphead commented on code in PR #9069:
URL: https://github.com/apache/arrow-datafusion/pull/9069#discussion_r1474714641


##########
datafusion/core/src/physical_planner.rs:
##########
@@ -124,6 +124,9 @@ fn physical_name(e: &Expr) -> Result<String> {
 
 fn create_physical_name(e: &Expr, is_first_expr: bool) -> Result<String> {
     match e {
+        Expr::Unnest(_) => {
+            internal_err!("Expr::Unnest should have been converted to 
LogicalPlan::Unest")

Review Comment:
   ```suggestion
               internal_err!("Expr::Unnest should have been converted to 
LogicalPlan::Unnest")
   ```



-- 
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]

Reply via email to