phillipleblanc commented on code in PR #12158:
URL: https://github.com/apache/datafusion/pull/12158#discussion_r1747999070


##########
datafusion/sql/src/unparser/plan.rs:
##########
@@ -532,6 +548,73 @@ impl Unparser<'_> {
         }
     }
 
+    fn unparse_table_scan_pushdown(
+        plan: &LogicalPlan,
+        alias: Option<TableReference>,
+    ) -> Result<LogicalPlan> {
+        match plan {
+            LogicalPlan::TableScan(table_scan) => {
+                // TODO: support filters for table scan with alias.Remove this 
check after #12368 issue.

Review Comment:
   ```suggestion
                   // TODO: support filters for table scan with alias. Remove 
this check after #12368 issue.
   ```



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to