Jimexist commented on a change in pull request #1266:
URL: https://github.com/apache/arrow-datafusion/pull/1266#discussion_r744568527



##########
File path: datafusion/src/logical_plan/plan.rs
##########
@@ -212,6 +212,15 @@ pub enum LogicalPlan {
         /// The logical plan
         input: Arc<LogicalPlan>,
     },
+    /// Drops a table.
+    DropTable {
+        /// The table name
+        name: String,
+        /// If the table exists
+        if_exist: bool,
+        /// Dummy schema
+        schema: DFSchemaRef,

Review comment:
       i wonder if it's valuable to actually just attach the fetched table 
schema




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