Dandandan commented on a change in pull request #1266:
URL: https://github.com/apache/arrow-datafusion/pull/1266#discussion_r744569833
##########
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:
Why do we need a schema for dropping the table?
--
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]