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 Jan 2, 2025
1 parent 5a1c3fc commit d27dcab
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 d27dcab

Please sign in to comment.