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 73cd3bc commit b8e3507Copy full SHA for b8e3507
shed/sql/common/sqlite.rs
@@ -132,6 +132,8 @@ impl SqliteConnectionGuard {
132
/// Commit a transaction that is being executed on this connection, and
133
/// then release the connection. If the commit fails, the connection is
134
/// not release, and is instead returned along with the error.
135
+ // TODO: Remove allow
136
+ #[allow(clippy::result_large_err)]
137
pub async fn commit(self) -> Result<(), (Self, rusqlite::Error)> {
138
fn commit_and_release(
139
guard: SqliteConnectionGuard,
0 commit comments