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 823015e commit 18a38beCopy full SHA for 18a38be
crates/core/src/crud_vtab.rs
@@ -340,7 +340,7 @@ extern "C" fn commit(vtab: *mut sqlite::vtab) -> c_int {
340
341
extern "C" fn rollback(vtab: *mut sqlite::vtab) -> c_int {
342
let tab = unsafe { &mut *(vtab.cast::<VirtualTable>()) };
343
- tab.state.track_rollback();
+ tab.end_transaction();
344
// ps_tx will be rolled back automatically
345
ResultCode::OK as c_int
346
}
0 commit comments