Commit 6c2e453e authored by monty@tik.mysql.fi's avatar monty@tik.mysql.fi
Browse files

Fixed quoting problem in mysqldump

parent ed040fe2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -651,7 +651,7 @@ static uint getTableStructure(char *table, char* db)
      /* Make an sql-file, if path was given iow. option -T was given */
      char buff[20+FN_REFLEN];

      sprintf(buff,"show create table `%s`",table_name);
      sprintf(buff,"show create table `%s`",table);
      if (mysql_query(sock, buff))
      {
        fprintf(stderr, "%s: Can't get CREATE TABLE for table '%s' (%s)\n",