Skip to content

Commit

Permalink
Remove allow_unused exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
westonpace committed Dec 18, 2024
1 parent bbc6908 commit e090deb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions datafusion/catalog/src/async.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ impl SchemaProvider for ResolvedSchemaProvider {
Ok(self.cached_tables.get(name).cloned())
}

#[allow(unused_variables)]
fn register_table(
&self,
name: String,
Expand All @@ -60,7 +59,6 @@ impl SchemaProvider for ResolvedSchemaProvider {
)
}

#[allow(unused_variables)]
fn deregister_table(&self, name: &str) -> Result<Option<Arc<dyn TableProvider>>> {
not_impl_err!("Attempt to deregister table '{name}' with ResolvedSchemaProvider which is not supported")
}
Expand Down

0 comments on commit e090deb

Please sign in to comment.