Commit a842253e authored by unknown's avatar unknown
Browse files

BUG#24363 If the table structure has been changed, the default action about the restore will fail.

 - correction of patch, original patch will segfault for print option

parent 52773743
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -668,7 +668,11 @@ BackupRestore::update_apply_status(const RestoreMetaData &metaData)
}

bool
BackupRestore::table_equal(const TableS &tableS){
BackupRestore::table_equal(const TableS &tableS)
{
  if (!m_restore)
    return true;

  const char *tablename = tableS.getTableName();

  if(tableS.m_dictTable == NULL){