From 97d0415687b757e1ffb2c79f69c1e36a8ee3d63b Mon Sep 17 00:00:00 2001 From: Martin Herndl Date: Wed, 19 Aug 2015 08:28:26 -0400 Subject: [PATCH 1/2] Fixes #11386 Cannot import database with long data in one column Signed-off-by: Martin Herndl martin.herndl@world4you.com --- libraries/plugins/import/ImportSql.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/plugins/import/ImportSql.class.php b/libraries/plugins/import/ImportSql.class.php index 8226b57fcc..cf2f098bae 100644 --- a/libraries/plugins/import/ImportSql.class.php +++ b/libraries/plugins/import/ImportSql.class.php @@ -419,7 +419,7 @@ class ImportSql extends ImportPlugin while (!$error && !$timeout_passed) { if (false === $delimiterFound) { - $newData = PMA_importGetNextChunk(200); + $newData = PMA_importGetNextChunk(); if ($newData === false) { // subtract data we didn't handle yet and stop processing $GLOBALS['offset'] -= $this->_dataLength; From 85dc44b557eb8536fec5c93fcfe6507fa3b94276 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 19 Aug 2015 08:29:51 -0400 Subject: [PATCH 2/2] ChangeLog entry Signed-off-by: Marc Delisle --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 5976ec5f05..e8d6a55ec8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ phpMyAdmin - ChangeLog - issue #11387 phpseclib < 2.0 produces deprecated messages on PHP 7 - issue #11404 "Switch to copied table" doesn't work - issue #11406 Missing quotes after calling "distinct values" +- issue #11386 Cannot import database with long data in one column 4.4.13.1 (2015-08-08) - issue #11368 SQL error when importing phpMyAdmin dump file