Commit 9de65491 authored by serg@serg.mysql.com's avatar serg@serg.mysql.com

mysqldump.c typo fixed

mysqldumpslow.sh   | first line should be #!@PERL@
mysqld_multi.sh    | not #@perl@ or #!/usr/bin/perl
parent 3afbfc2b
......@@ -599,7 +599,7 @@ static uint getTableStructure(char *table, char* db)
sprintf(insert_pat,"SET OPTION SQL_QUOTE_SHOW_CREATE=%d", opt_quoted);
table_name=quote_name(table,table_buff);
if (mysql_query(sock,insert_pat))
if (!mysql_query(sock,insert_pat))
{
/* using SHOW CREATE statement */
if (!tFlag)
......
#!/usr/bin/perl
#!@PERL@
use Getopt::Long;
use POSIX qw(strftime);
......
#@perl@
#!@PERL@
# mysqldumpslow - parse and summarize the MySQL slow query log
use strict;
......
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