Commit 6e5c5b78 authored by unknown's avatar unknown

Merge mysql.com:/home/mysql_src/mysql-4.1-clean

into mysql.com:/home/mysql_src/mysql-5.0-clean


client/mysqldump.c:
  Auto merged
parents 445c9103 546e2d31
...@@ -1706,7 +1706,7 @@ static void dumpTable(uint numFields, char *table) ...@@ -1706,7 +1706,7 @@ static void dumpTable(uint numFields, char *table)
else if (opt_hex_blob && is_blob) else if (opt_hex_blob && is_blob)
{ {
/* sakaik got the idea to to provide blob's in hex notation. */ /* sakaik got the idea to to provide blob's in hex notation. */
unsigned char *ptr= row[i], *end= ptr+ lengths[i]; char *ptr= row[i], *end= ptr+ lengths[i];
fputs("0x", md_result_file); fputs("0x", md_result_file);
for (; ptr < end ; ptr++) for (; ptr < end ; ptr++)
fprintf(md_result_file, "%02X", *ptr); fprintf(md_result_file, "%02X", *ptr);
...@@ -2448,7 +2448,7 @@ int main(int argc, char **argv) ...@@ -2448,7 +2448,7 @@ int main(int argc, char **argv)
} }
if (opt_master_data && do_show_master_status(sock)) if (opt_master_data && do_show_master_status(sock))
goto err; goto err;
if (opt_single_transaction && do_unlock_tables(sock)) // unlock but no commit! if (opt_single_transaction && do_unlock_tables(sock)) /* unlock but no commit! */
goto err; goto err;
if (opt_alldbs) if (opt_alldbs)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment