From 6326628901fce3a80d4f5c31a6ecda147b58d0e0 Mon Sep 17 00:00:00 2001 From: Julien Le Coupanec Date: Sun, 12 Apr 2026 19:25:52 +0200 Subject: [PATCH] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- databases/mysql.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/databases/mysql.sh b/databases/mysql.sh index f5b1dd6..43226f5 100644 --- a/databases/mysql.sh +++ b/databases/mysql.sh @@ -111,3 +111,4 @@ START TRANSACTION; # Begin a new tra COMMIT; # Save all changes made during the transaction ROLLBACK; # Undo all changes if an error occurs before commit SET AUTOCOMMIT = 0; # Disable automatic commits for the current session +SET AUTOCOMMIT = 1; # Re-enable automatic commits after finishing manual transactions