Closed (fixed)
Project:
Drush
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
15 Jun 2009 at 11:36 UTC
Updated:
16 Sep 2009 at 18:07 UTC
In the source: drush/commands/sql/sql.drush.inc
at line 184: $ignores[] = "--ignore-table=$database.$table";
the variable $database is empty at this point and creates wrong --ignore-table statements
like e.g.: --ignore-table=.cache
Temporary fix:
Move line 167: $database = $db_spec['database'];
after line 172 to fill $database correctly.
Comments
Comment #1
wrunt commentedI can confirm this bug, and the fix given is the same one I made to make this work.
Comment #2
grendzy commentedI ran into this also; it seems to be fixed in the latest HEAD.
Comment #3
grendzy commentedHere's the patch if you need it:
http://cvs.drupal.org/viewvc.py/drupal/contributions/modules/drush/comma...