From 8a50b66e39a7a88e29c5ff4334c1cb764db6c51a Mon Sep 17 00:00:00 2001 From: Roger Rodrigo Nuez <78469063+rrodrigonuez-i4@users.noreply.github.com> Date: Wed, 27 Nov 2024 19:11:05 +0100 Subject: [PATCH] Removed column-statistics=0 column-statistics=0 is an argument not compatible with mysql8, this argument make mysqldump command to fail --- src/Shell/Command/Mysqldump.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Shell/Command/Mysqldump.php b/src/Shell/Command/Mysqldump.php index 035bd3f..d7e2570 100644 --- a/src/Shell/Command/Mysqldump.php +++ b/src/Shell/Command/Mysqldump.php @@ -11,7 +11,6 @@ public function __construct($arguments = '') $this->arguments([ '--single-transaction', '--quick', - '--column-statistics=0', '--no-tablespaces' ]); }