Commit d02e86de authored by unknown's avatar unknown
Browse files

Merge rburnett@bk-internal.mysql.com:/home/bk/mysql-5.0

into mdk10.(none):/home/reggie/bk/50test2

parents 4ecc9757 c2c0d653
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -447,7 +447,7 @@ list_tables(MYSQL *mysql,const char *db,const char *table)
      We just hijack the 'rows' variable for a bit to store the escaped
      table name
    */
    mysql_escape_string(rows, table, sizeof(rows));
    mysql_real_escape_string(mysql, rows, table, (unsigned long)strlen(table));
    my_snprintf(query, sizeof(query), "show%s tables like '%s'",
                opt_table_type ? " full" : "", rows);
  }