[ci] Fix or ignore clippy warnings for all optional features except compact_filters

This commit is contained in:
Steve Myers
2020-10-28 15:34:46 -07:00
parent 297e92a829
commit 8d04128c74
5 changed files with 14 additions and 10 deletions

View File

@@ -322,7 +322,7 @@ impl BatchDatabase for AnyDatabase {
}
fn commit_batch(&mut self, batch: Self::Batch) -> Result<(), Error> {
// TODO: refactor once `move_ref_pattern` is stable
#[allow(irrefutable_let_patterns)]
match self {
AnyDatabase::Memory(db) => {
if let AnyBatch::Memory(batch) = batch {