From 3802b2362c03ef288f28a27b0fc9c2e8e2faa3e3 Mon Sep 17 00:00:00 2001 From: Thomas Steur <thomas.steur@googlemail.com> Date: Mon, 30 Jun 2014 03:44:26 +0200 Subject: [PATCH] there is not a need to alter the table in chunks as this did not cause the mysql has gone away error --- core/Columns/Updates.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/Columns/Updates.php b/core/Columns/Updates.php index 16233c78ff..0660c35d6f 100644 --- a/core/Columns/Updates.php +++ b/core/Columns/Updates.php @@ -42,11 +42,11 @@ class Updates extends \Piwik\Updates $changingColumns = self::getUpdates(); foreach ($changingColumns as $table => $columns) { - $chunks = array_chunk($columns, 3); - - foreach ($chunks as $columnsToAlter) { - $sqls["ALTER TABLE `" . Common::prefixTable($table) . "` " . implode(', ', $columnsToAlter)] = false; + if (empty($columns) || !is_array($columns)) { + continue; } + + $sqls["ALTER TABLE `" . Common::prefixTable($table) . "` " . implode(', ', $columns)] = false; } return $sqls; -- GitLab