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

mysqldump.c typo fixed

mysqldumpslow.sh   | first line should be #!@PERL@
mysqld_multi.sh    | not #@perl@ or #!/usr/bin/perl
parent 3afbfc2b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)

scripts/mysqld_multi.sh

100755 → 100644
+12 −12
Original line number Diff line number Diff line
#!/usr/bin/perl
#!@PERL@

use Getopt::Long;
use POSIX qw(strftime);

scripts/mysqldumpslow.sh

100755 → 100644
+1 −1
Original line number Diff line number Diff line
#@perl@
#!@PERL@
# mysqldumpslow - parse and summarize the MySQL slow query log

use strict;