1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

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

This commit is contained in:
unknown
2005-11-18 09:54:49 +01:00
parent fe50343e1a
commit b18b07e6b1
2 changed files with 2 additions and 3 deletions

View File

@@ -152,7 +152,7 @@ connection server1;
alter table t1 drop index c; alter table t1 drop index c;
connection server2; connection server2;
# This should fail since index information is not automatically refreshed # 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';
select * from t1 where b = 'two'; select * from t1 where b = 'two';
connection server1; connection server1;

View File

@@ -3342,8 +3342,7 @@ int ha_ndbcluster::external_lock(THD *thd, int lock_type)
/* /*
The table has been altered, caller has to retry The table has been altered, caller has to retry
*/ */
NdbError err= ndb->getNdbError(NDB_INVALID_SCHEMA_OBJECT); DBUG_RETURN(my_errno= HA_ERR_TABLE_DEF_CHANGED);
DBUG_RETURN(ndb_to_mysql_error(&err));
} }
m_table_info= tab_info; m_table_info= tab_info;
} }