marcprux commented on a change in pull request #9445: URL: https://github.com/apache/arrow/pull/9445#discussion_r572208569
########## File path: rust/datafusion/src/execution/context.rs ########## @@ -287,6 +287,21 @@ impl ExecutionContext { .insert(name.to_string(), provider.into()); } + /// Deregisters the named table. + /// + /// Returns true if the table was successfully de-reregistered. + pub fn deregister_table( + &mut self, + name: &str + ) -> bool { Review comment: I don't think it should be an error to attempt to deregister with an unknown 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org