Commit 4317632e authored by unknown's avatar unknown

ndb - autotest

  adopt to new error code 755 (invalid tablespace)


storage/ndb/test/src/NDBT_Tables.cpp:
  Fxi new error code
parent 14b4a251
......@@ -974,7 +974,7 @@ NDBT_Tables::createTable(Ndb* pNdb, const char* _name, bool _temp,
loop:
r = pNdb->getDictionary()->createTable(tmpTab);
if(r == -1){
if(pNdb->getDictionary()->getNdbError().code == 723)
if(pNdb->getDictionary()->getNdbError().code == 755)
{
if (create_default_tablespace(pNdb) == 0)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment