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


##########
datafusion/sql/src/unparser/plan.rs:
##########
@@ -502,3 +505,35 @@ impl From<BuilderError> for DataFusionError {
         DataFusionError::External(Box::new(e))
     }
 }
+
+#[cfg(test)]
+mod test {
+    use crate::unparser::plan_to_sql;
+    use arrow::datatypes::{DataType, Field, Schema};
+    use datafusion_expr::{col, logical_plan::table_scan};
+    #[test]
+    fn test_plan_to_sql() {

Review Comment:
   ```suggestion
       fn test_table_references_in_plan_to_sql() {
   ```
   
   This test technically just covers the table references part.



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