diff options
author | unknown <joreland@mysql.com> | 2004-09-25 18:36:56 +0200 |
---|---|---|
committer | unknown <joreland@mysql.com> | 2004-09-25 18:36:56 +0200 |
commit | ea29015d6fb6e70e8ce7a310450581241643c1c3 (patch) | |
tree | 7f8d665b95fc9cde48c27edbe17c265012275251 /ndb | |
parent | 69edf1ddd4c00296b12212f6da83d8bb0759dd0a (diff) | |
download | mariadb-git-ea29015d6fb6e70e8ce7a310450581241643c1c3.tar.gz |
Ops forgott to put table in hash
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/src/kernel/blocks/dbdict/Dbdict.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ndb/src/kernel/blocks/dbdict/Dbdict.cpp b/ndb/src/kernel/blocks/dbdict/Dbdict.cpp index 821c847d5b9..97270b65132 100644 --- a/ndb/src/kernel/blocks/dbdict/Dbdict.cpp +++ b/ndb/src/kernel/blocks/dbdict/Dbdict.cpp @@ -4561,7 +4561,7 @@ void Dbdict::handleTabInfoInit(SimpleProperties::Reader & it, TableRecordPtr tablePtr; c_tableRecordHash.find(tablePtr, keyRecord); - + if (checkExist){ jam(); /* ---------------------------------------------------------------- */ @@ -4645,6 +4645,7 @@ void Dbdict::handleTabInfoInit(SimpleProperties::Reader & it, #ifdef VM_TRACE ndbout_c("Dbdict: name=%s,id=%u", tablePtr.p->tableName, tablePtr.i); #endif + c_tableRecordHash.add(tablePtr); } //tablePtr.p->noOfPrimkey = tableDesc.NoOfKeyAttr; |