? .drush-cache.info
? includes/table.inc
Index: drushrc.php
===================================================================
RCS file: drushrc.php
diff -N drushrc.php
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ drushrc.php	30 Dec 2010 23:04:40 -0000
@@ -0,0 +1,17 @@
+<?php
+// $Id: drushrc.php,v $
+
+/**
+ * Default options for drush.
+ *
+ * IMPORTANT:  Do not edit this file directly.  To set your own
+ * default options, copy the file examples/example.drushrc.php
+ * to $HOME/.drush/drushrc.php and customize there.
+ */
+
+// Make 'sql-sync' do ordered dumps by default; this will improve the
+// performance of rsync.  To override, either add your own command-specific
+// option for sql-sync in your drushrc.php file, like so:
+//   $options['command-specific']['sql-sync'] = array();
+// Or pass --no-ordered-dump on the command line.
+$options['command-specific']['sql-sync'] = array('ordered-dump' => TRUE);
Index: commands/sql/sql.drush.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/drush/commands/sql/sql.drush.inc,v
retrieving revision 1.88
diff -u -p -r1.88 sql.drush.inc
--- commands/sql/sql.drush.inc	30 Dec 2010 18:28:08 -0000	1.88
+++ commands/sql/sql.drush.inc	30 Dec 2010 23:04:41 -0000
@@ -114,6 +114,7 @@ function sql_drush_command() {
       '--create-db' => 'Create a new database before importing the database dump on the target machine.',
       '--db-su' => 'Account to use when creating a new database. Optional.',
       '--db-su-pw' => 'Password for the "db-su" account. Optional.',
+      '--no-ordered-dump' => 'Do not pass --ordered-dump to sql-dump.  sql-sync orders the dumpfile by default in order to increase the efficiency of rsync.',
       '--sanitize' => 'Obscure email addresses and reset passwords in the user table post-sync. Optional.',
     ),
     'sub-options' => array(
