Skip to content

Commit daaaa08

Browse files
committed
Add extended insert to avoid one large insert
1 parent 4dfe43b commit daaaa08

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Engine/MysqlEngine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function export($file, $options = [])
6464
{
6565
$databaseName = $this->_database['database'];
6666
$baseArgs = $this->_getBaseArguments();
67-
$command = "mysqldump $baseArgs $databaseName | grep -v -a '/*!50013 DEFINER'";
67+
$command = "mysqldump --extended-insert=FALSE $baseArgs $databaseName | grep -v -a '/*!50013 DEFINER'";
6868
if (!empty($file)) {
6969
$command .= " > $file";
7070
}

0 commit comments

Comments
 (0)