Commit a7abbd91 authored by unknown's avatar unknown
Browse files

Merge bk-internal:/home/bk/mysql-4.1

into  mysql.com:/home/jimw/my/mysql-4.1-clean

parents 3cebcd15 4f9faf5e
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -2557,7 +2557,10 @@ static const char *check_if_ignore_table(const char *table_name)
    mysql_free_result(res);
    return 0;					/* assume table is ok */
  }
  if (strcmp(row[1], (result= "MRG_MyISAM")) &&
  /* Some forward-compatibility: don't dump data from a VIEW */
  if (!row[1])
    result= "VIEW";
  else if (strcmp(row[1], (result= "MRG_MyISAM")) &&
           strcmp(row[1], (result= "MRG_ISAM")))
    result= 0;
  mysql_free_result(res);