This commit is contained in:
gwenn 2020-06-24 19:47:33 +02:00 committed by Thom Chiovoloni
parent f37519ad51
commit 57db338537

View File

@ -291,7 +291,8 @@ impl Savepoint<'_> {
}
fn commit_(&mut self) -> Result<()> {
self.conn.execute(&format!("RELEASE {}", self.name), NO_PARAMS)?;
self.conn
.execute(&format!("RELEASE {}", self.name), NO_PARAMS)?;
self.committed = true;
Ok(())
}