Commit b18b07e6 authored by unknown's avatar unknown
Browse files

Using new error code HA_ERR_TABLE_DEF_CHANGED to signal wrong schema version of table

parent fe50343e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -152,7 +152,7 @@ connection server1;
alter table t1 drop index c;
connection server2;
# This should fail since index information is not automatically refreshed
--error 1105
--error 1412
select * from t1 where b = 'two';
select * from t1 where b = 'two';
connection server1;
+1 −2
Original line number Diff line number Diff line
@@ -3342,8 +3342,7 @@ int ha_ndbcluster::external_lock(THD *thd, int lock_type)
        /*
          The table has been altered, caller has to retry
        */
        NdbError err= ndb->getNdbError(NDB_INVALID_SCHEMA_OBJECT);
        DBUG_RETURN(ndb_to_mysql_error(&err));
        DBUG_RETURN(my_errno= HA_ERR_TABLE_DEF_CHANGED);
      }
      m_table_info= tab_info;
    }