We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca0814d commit dd03736Copy full SHA for dd03736
crates/core/src/db/commit_log.rs
@@ -57,7 +57,7 @@ impl CommitLog {
57
}
58
59
60
- fn generate_commit<D: MutTxDatastore<RowId = RowId>>(&self, tx_data: &TxData, datastore: &D) -> Option<Vec<u8>> {
+ fn generate_commit<D: MutTxDatastore<RowId = RowId>>(&self, tx_data: &TxData, _datastore: &D) -> Option<Vec<u8>> {
61
let mut unwritten_commit = self.unwritten_commit.lock().unwrap();
62
let writes = tx_data
63
.records
0 commit comments