Fixed transaction commit

This commit is contained in:
2026-02-10 16:18:16 +00:00
parent b9378c3ae7
commit f07fe3ed2a

View File

@@ -65,5 +65,5 @@ commitTransaction <- function(quietly = FALSE) {
if (transactionLevel > 0) { if (transactionLevel > 0) {
return(TRUE) return(TRUE)
} }
DBI::dbRollback(self$getConnection()) DBI::dbCommit(self$getConnection())
} }