Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / drush / drush / src / Sql / SqlMysql.php
index b768888e3a00e639c21cd3840dab3f79d3182c3e..23171d0be7b4fc65f61809572de109e2c553b04a 100644 (file)
@@ -9,6 +9,8 @@ use PDO;
 class SqlMysql extends SqlBase
 {
 
+    public $queryExtra = '-A';
+
     public function command()
     {
         return 'mysql';
@@ -150,7 +152,7 @@ EOT;
         if ($ordered_dump) {
             $extra .= ' --skip-extended-insert --order-by-primary';
         }
-        if ($option = $this->getOption('extra-dump', $this->queryExtra)) {
+        if ($option = $this->getOption('extra-dump')) {
             $extra .= " $option";
         }
         $exec .= $extra;