From ea8da926938ad47d465f4ced6cfc67adffbebb52 Mon Sep 17 00:00:00 2001 From: Kartik Kathuria Date: Fri, 17 Jan 2020 16:03:08 +0530 Subject: [PATCH] Removed AutoCommit Signed-off-by: Kartik Kathuria --- libraries/classes/Plugins/Export/ExportSql.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/classes/Plugins/Export/ExportSql.php b/libraries/classes/Plugins/Export/ExportSql.php index 9c5b1a2543..648c847b0a 100644 --- a/libraries/classes/Plugins/Export/ExportSql.php +++ b/libraries/classes/Plugins/Export/ExportSql.php @@ -756,8 +756,7 @@ class ExportSql extends ExportPlugin } if (isset($GLOBALS['sql_use_transaction'])) { - $head .= 'SET AUTOCOMMIT = 0;' . $crlf - . 'START TRANSACTION;' . $crlf; + $head .= 'START TRANSACTION;' . $crlf; } /* Change timezone if we should export timestamps in UTC */