From c87794fc354941729d1f0c4607693c0b8d2cfda2 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 8 Sep 2020 14:33:59 -0500 Subject: [PATCH] throw exception --- src/Illuminate/Database/Schema/MySqlSchemaState.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Illuminate/Database/Schema/MySqlSchemaState.php b/src/Illuminate/Database/Schema/MySqlSchemaState.php index 4c4b791477d0..c3bb01ecb7fb 100644 --- a/src/Illuminate/Database/Schema/MySqlSchemaState.php +++ b/src/Illuminate/Database/Schema/MySqlSchemaState.php @@ -121,6 +121,8 @@ protected function executeDumpProcess(Process $process, $output, array $variable str_replace(' --column-statistics=0', '', $process->getCommandLine()) ), $output, $variables); } + + throw $e; } return $process;