BUG#9626 Several serious errors reported by Valgrind in latest 5.0 bk tree

 - Fix several valgrind warnings.
parent 5245f98c
...@@ -17,6 +17,8 @@ ...@@ -17,6 +17,8 @@
#ifndef ATTRIBUTE_LIST_HPP #ifndef ATTRIBUTE_LIST_HPP
#define ATTRIBUTE_LIST_HPP #define ATTRIBUTE_LIST_HPP
#include "ndb_limits.h"
/** /**
* Masks and lists used by index and trigger. Must be plain old Uint32 data. * Masks and lists used by index and trigger. Must be plain old Uint32 data.
* XXX depends on other headers XXX move to some common file * XXX depends on other headers XXX move to some common file
......
...@@ -1583,15 +1583,17 @@ private: ...@@ -1583,15 +1583,17 @@ private:
void abortTransactionsAfterNodeFailure(Uint16 aNodeId); void abortTransactionsAfterNodeFailure(Uint16 aNodeId);
static static
const char * externalizeTableName(const char * internalTableName, bool fullyQualifiedNames); const char * externalizeTableName(const char * internalTableName,
bool fullyQualifiedNames);
const char * externalizeTableName(const char * internalTableName); const char * externalizeTableName(const char * internalTableName);
const char * internalizeTableName(const char * externalTableName); const BaseString internalize_table_name(const char * external_name) const;
static static
const char * externalizeIndexName(const char * internalIndexName, bool fullyQualifiedNames); const char * externalizeIndexName(const char * internalIndexName,
bool fullyQualifiedNames);
const char * externalizeIndexName(const char * internalIndexName); const char * externalizeIndexName(const char * internalIndexName);
const char * internalizeIndexName(const NdbTableImpl * table, const BaseString internalize_index_name(const NdbTableImpl * table,
const char * externalIndexName); const char * external_name) const;
static static
const BaseString getDatabaseFromInternalName(const char * internalName); const BaseString getDatabaseFromInternalName(const char * internalName);
......
...@@ -172,6 +172,8 @@ public: ...@@ -172,6 +172,8 @@ public:
virtual bool reset() = 0; virtual bool reset() = 0;
virtual bool putWord(Uint32 val) = 0; virtual bool putWord(Uint32 val) = 0;
virtual bool putWords(const Uint32 * src, Uint32 len) = 0; virtual bool putWords(const Uint32 * src, Uint32 len) = 0;
private:
bool add(const char* value, int len);
}; };
}; };
...@@ -211,7 +213,7 @@ private: ...@@ -211,7 +213,7 @@ private:
}; };
/** /**
* Writer for linear memory * Writer for UtilBuffer
*/ */
class UtilBufferWriter : public SimpleProperties::Writer { class UtilBufferWriter : public SimpleProperties::Writer {
public: public:
......
...@@ -36,6 +36,28 @@ SimpleProperties::Writer::add(Uint16 key, Uint32 value){ ...@@ -36,6 +36,28 @@ SimpleProperties::Writer::add(Uint16 key, Uint32 value){
return putWord(htonl(value)); return putWord(htonl(value));
} }
bool
SimpleProperties::Writer::add(const char * value, int len){
const Uint32 valLen = (len + 3) / 4;
if ((len % 4) == 0)
return putWords((Uint32*)value, valLen);
const Uint32 putLen= valLen - 1;
if (!putWords((Uint32*)value, putLen))
return false;
// Special handling of last bytes
union {
Uint32 lastWord;
char lastBytes[4];
};
memcpy(lastBytes,
value + putLen*4,
len - putLen*4);
return putWord(lastWord);
}
bool bool
SimpleProperties::Writer::add(Uint16 key, const char * value){ SimpleProperties::Writer::add(Uint16 key, const char * value){
Uint32 head = StringValue; Uint32 head = StringValue;
...@@ -46,9 +68,9 @@ SimpleProperties::Writer::add(Uint16 key, const char * value){ ...@@ -46,9 +68,9 @@ SimpleProperties::Writer::add(Uint16 key, const char * value){
Uint32 strLen = strlen(value) + 1; // Including NULL-byte Uint32 strLen = strlen(value) + 1; // Including NULL-byte
if(!putWord(htonl(strLen))) if(!putWord(htonl(strLen)))
return false; return false;
const Uint32 valLen = (strLen + 3) / 4; return add(value, (int)strLen);
return putWords((Uint32*)value, valLen);
} }
bool bool
...@@ -60,9 +82,8 @@ SimpleProperties::Writer::add(Uint16 key, const void* value, int len){ ...@@ -60,9 +82,8 @@ SimpleProperties::Writer::add(Uint16 key, const void* value, int len){
return false; return false;
if(!putWord(htonl(len))) if(!putWord(htonl(len)))
return false; return false;
const Uint32 valLen = (len + 3) / 4; return add((const char*)value, len);
return putWords((Uint32*)value, valLen);
} }
SimpleProperties::Reader::Reader(){ SimpleProperties::Reader::Reader(){
...@@ -392,6 +413,7 @@ UtilBufferWriter::putWords(const Uint32 * src, Uint32 len){ ...@@ -392,6 +413,7 @@ UtilBufferWriter::putWords(const Uint32 * src, Uint32 len){
return (m_buf.append(src, 4 * len) == 0); return (m_buf.append(src, 4 * len) == 0);
} }
Uint32 Uint32
UtilBufferWriter::getWordsUsed() const { return m_buf.length() / 4;} UtilBufferWriter::getWordsUsed() const { return m_buf.length() / 4;}
......
...@@ -79,11 +79,14 @@ LocalDictCache::drop(const char * name){ ...@@ -79,11 +79,14 @@ LocalDictCache::drop(const char * name){
* Global cache * Global cache
*/ */
GlobalDictCache::GlobalDictCache(){ GlobalDictCache::GlobalDictCache(){
DBUG_ENTER("GlobalDictCache::GlobalDictCache");
m_tableHash.createHashTable(); m_tableHash.createHashTable();
m_waitForTableCondition = NdbCondition_Create(); m_waitForTableCondition = NdbCondition_Create();
DBUG_VOID_RETURN;
} }
GlobalDictCache::~GlobalDictCache(){ GlobalDictCache::~GlobalDictCache(){
DBUG_ENTER("GlobalDictCache::~GlobalDictCache");
NdbElement_t<Vector<TableVersion> > * curr = m_tableHash.getNext(0); NdbElement_t<Vector<TableVersion> > * curr = m_tableHash.getNext(0);
while(curr != 0){ while(curr != 0){
Vector<TableVersion> * vers = curr->theData; Vector<TableVersion> * vers = curr->theData;
...@@ -93,20 +96,52 @@ GlobalDictCache::~GlobalDictCache(){ ...@@ -93,20 +96,52 @@ GlobalDictCache::~GlobalDictCache(){
delete (* vers)[i].m_impl; delete (* vers)[i].m_impl;
} }
delete curr->theData; delete curr->theData;
curr->theData= NULL;
curr = m_tableHash.getNext(curr); curr = m_tableHash.getNext(curr);
} }
m_tableHash.releaseHashTable(); m_tableHash.releaseHashTable();
NdbCondition_Destroy(m_waitForTableCondition); NdbCondition_Destroy(m_waitForTableCondition);
DBUG_VOID_RETURN;
} }
#include <NdbOut.hpp> void GlobalDictCache::printCache()
{
DBUG_ENTER("GlobalDictCache::printCache");
NdbElement_t<Vector<TableVersion> > * curr = m_tableHash.getNext(0);
while(curr != 0){
DBUG_PRINT("curr", ("len: %d, hash: %d, lk: %d, str: %s",
curr->len, curr->hash, curr->localkey1, curr->str));
if (curr->theData){
Vector<TableVersion> * vers = curr->theData;
const unsigned sz = vers->size();
for(unsigned i = 0; i<sz ; i++){
TableVersion tv= (*vers)[i];
DBUG_PRINT(" ", ("vers[%d]: ver: %d, refCount: %d, status: %d",
sz, tv.m_version, tv.m_refCount, tv.m_status));
if(tv.m_impl != 0)
{
DBUG_PRINT(" ", ("m_impl: internalname: %s",
tv.m_impl->m_internalName.c_str()));
}
}
}
else
{
DBUG_PRINT(" ", ("NULL"));
}
curr = m_tableHash.getNext(curr);
}
DBUG_VOID_RETURN;
}
NdbTableImpl * NdbTableImpl *
GlobalDictCache::get(const char * name) GlobalDictCache::get(const char * name)
{ {
DBUG_ENTER("GlobalDictCache::get");
DBUG_PRINT("enter", ("name: %s", name));
const Uint32 len = strlen(name); const Uint32 len = strlen(name);
Vector<TableVersion> * versions = 0; Vector<TableVersion> * versions = 0;
versions = m_tableHash.getData(name, len); versions = m_tableHash.getData(name, len);
if(versions == 0){ if(versions == 0){
versions = new Vector<TableVersion>(2); versions = new Vector<TableVersion>(2);
...@@ -121,7 +156,7 @@ GlobalDictCache::get(const char * name) ...@@ -121,7 +156,7 @@ GlobalDictCache::get(const char * name)
switch(ver->m_status){ switch(ver->m_status){
case OK: case OK:
ver->m_refCount++; ver->m_refCount++;
return ver->m_impl; DBUG_RETURN(ver->m_impl);
case DROPPED: case DROPPED:
retreive = true; // Break loop retreive = true; // Break loop
break; break;
...@@ -140,24 +175,28 @@ GlobalDictCache::get(const char * name) ...@@ -140,24 +175,28 @@ GlobalDictCache::get(const char * name)
tmp.m_status = RETREIVING; tmp.m_status = RETREIVING;
tmp.m_refCount = 1; // The one retreiving it tmp.m_refCount = 1; // The one retreiving it
versions->push_back(tmp); versions->push_back(tmp);
return 0; DBUG_RETURN(0);
} }
NdbTableImpl * NdbTableImpl *
GlobalDictCache::put(const char * name, NdbTableImpl * tab) GlobalDictCache::put(const char * name, NdbTableImpl * tab)
{ {
DBUG_ENTER("GlobalDictCache::put");
DBUG_PRINT("enter", ("name: %s, internal_name: %s",
name, tab ? tab->m_internalName.c_str() : "tab NULL"));
const Uint32 len = strlen(name); const Uint32 len = strlen(name);
Vector<TableVersion> * vers = m_tableHash.getData(name, len); Vector<TableVersion> * vers = m_tableHash.getData(name, len);
if(vers == 0){ if(vers == 0){
// Should always tried to retreive it first // Should always tried to retreive it first
// and then there should be a record // and thus there should be a record
abort(); abort();
} }
const Uint32 sz = vers->size(); const Uint32 sz = vers->size();
if(sz == 0){ if(sz == 0){
// Should always tried to retreive it first // Should always tried to retreive it first
// and then there should be a record // and thus there should be a record
abort(); abort();
} }
...@@ -170,7 +209,7 @@ GlobalDictCache::put(const char * name, NdbTableImpl * tab) ...@@ -170,7 +209,7 @@ GlobalDictCache::put(const char * name, NdbTableImpl * tab)
} }
if(tab == 0){ if(tab == 0){
// No table found in db DBUG_PRINT("info", ("No table found in db"));
vers->erase(sz - 1); vers->erase(sz - 1);
} else { } else {
ver.m_impl = tab; ver.m_impl = tab;
...@@ -179,74 +218,84 @@ GlobalDictCache::put(const char * name, NdbTableImpl * tab) ...@@ -179,74 +218,84 @@ GlobalDictCache::put(const char * name, NdbTableImpl * tab)
} }
NdbCondition_Broadcast(m_waitForTableCondition); NdbCondition_Broadcast(m_waitForTableCondition);
return tab; DBUG_RETURN(tab);
} }
void void
GlobalDictCache::drop(NdbTableImpl * tab) GlobalDictCache::drop(NdbTableImpl * tab)
{ {
DBUG_ENTER("GlobalDictCache::drop");
DBUG_PRINT("enter", ("internal_name: %s", tab->m_internalName.c_str()));
unsigned i; unsigned i;
const Uint32 len = strlen(tab->m_internalName.c_str()); const Uint32 len = strlen(tab->m_internalName.c_str());
Vector<TableVersion> * vers = Vector<TableVersion> * vers =
m_tableHash.getData(tab->m_internalName.c_str(), len); m_tableHash.getData(tab->m_internalName.c_str(), len);
if(vers == 0){ if(vers == 0){
// Should always tried to retreive it first // Should always tried to retreive it first
// and then there should be a record // and thus there should be a record
abort(); abort();
} }
const Uint32 sz = vers->size(); const Uint32 sz = vers->size();
if(sz == 0){ if(sz == 0){
// Should always tried to retreive it first // Should always tried to retreive it first
// and then there should be a record // and thus there should be a record
abort(); abort();
} }
for(i = 0; i < sz; i++){ for(i = 0; i < sz; i++){
TableVersion & ver = (* vers)[i]; TableVersion & ver = (* vers)[i];
if(ver.m_impl == tab){ if(ver.m_impl == tab){
if(ver.m_refCount == 0 || ver.m_status == RETREIVING || if(ver.m_refCount == 0 || ver.m_status == RETREIVING ||
ver.m_version != tab->m_version){ ver.m_version != tab->m_version){
ndbout_c("Dropping with refCount=%d status=%d impl=%p", DBUG_PRINT("info", ("Dropping with refCount=%d status=%d impl=%p",
ver.m_refCount, ver.m_status, ver.m_impl); ver.m_refCount, ver.m_status, ver.m_impl));
break; break;
} }
DBUG_PRINT("info", ("Found table to drop, i: %d, name: %s",
i, ver.m_impl->m_internalName.c_str()));
ver.m_refCount--; ver.m_refCount--;
ver.m_status = DROPPED; ver.m_status = DROPPED;
if(ver.m_refCount == 0){ if(ver.m_refCount == 0){
DBUG_PRINT("info", ("refCount is zero, deleting m_impl"))
delete ver.m_impl; delete ver.m_impl;
vers->erase(i); vers->erase(i);
} }
return; DBUG_VOID_RETURN;
} }
} }
for(i = 0; i<sz; i++){ for(i = 0; i<sz; i++){
TableVersion & ver = (* vers)[i]; TableVersion & ver = (* vers)[i];
ndbout_c("%d: version: %d refCount: %d status: %d impl: %p", DBUG_PRINT("info", ("%d: version: %d refCount: %d status: %d impl: %p",
i, ver.m_version, ver.m_refCount, ver.m_status, ver.m_impl); i, ver.m_version, ver.m_refCount,
ver.m_status, ver.m_impl));
} }
abort(); abort();
} }
void void
GlobalDictCache::release(NdbTableImpl * tab){ GlobalDictCache::release(NdbTableImpl * tab)
{
DBUG_ENTER("GlobalDictCache::release");
DBUG_PRINT("enter", ("internal_name: %s", tab->m_internalName.c_str()));
unsigned i; unsigned i;
const Uint32 len = strlen(tab->m_internalName.c_str()); const Uint32 len = strlen(tab->m_internalName.c_str());
Vector<TableVersion> * vers = Vector<TableVersion> * vers =
m_tableHash.getData(tab->m_internalName.c_str(), len); m_tableHash.getData(tab->m_internalName.c_str(), len);
if(vers == 0){ if(vers == 0){
// Should always tried to retreive it first // Should always tried to retreive it first
// and then there should be a record // and thus there should be a record
abort(); abort();
} }
const Uint32 sz = vers->size(); const Uint32 sz = vers->size();
if(sz == 0){ if(sz == 0){
// Should always tried to retreive it first // Should always tried to retreive it first
// and then there should be a record // and thus there should be a record
abort(); abort();
} }
...@@ -255,20 +304,21 @@ GlobalDictCache::release(NdbTableImpl * tab){ ...@@ -255,20 +304,21 @@ GlobalDictCache::release(NdbTableImpl * tab){
if(ver.m_impl == tab){ if(ver.m_impl == tab){
if(ver.m_refCount == 0 || ver.m_status == RETREIVING || if(ver.m_refCount == 0 || ver.m_status == RETREIVING ||
ver.m_version != tab->m_version){ ver.m_version != tab->m_version){
ndbout_c("Releasing with refCount=%d status=%d impl=%p", DBUG_PRINT("info", ("Releasing with refCount=%d status=%d impl=%p",
ver.m_refCount, ver.m_status, ver.m_impl); ver.m_refCount, ver.m_status, ver.m_impl));
break; break;
} }
ver.m_refCount--; ver.m_refCount--;
return; DBUG_VOID_RETURN;
} }
} }
for(i = 0; i<sz; i++){ for(i = 0; i<sz; i++){
TableVersion & ver = (* vers)[i]; TableVersion & ver = (* vers)[i];
ndbout_c("%d: version: %d refCount: %d status: %d impl: %p", DBUG_PRINT("info", ("%d: version: %d refCount: %d status: %d impl: %p",
i, ver.m_version, ver.m_refCount, ver.m_status, ver.m_impl); i, ver.m_version, ver.m_refCount,
ver.m_status, ver.m_impl));
} }
abort(); abort();
......
...@@ -76,6 +76,8 @@ public: ...@@ -76,6 +76,8 @@ public:
}; };
private: private:
void printCache();
struct TableVersion { struct TableVersion {
Uint32 m_version; Uint32 m_version;
Uint32 m_refCount; Uint32 m_refCount;
......
...@@ -750,16 +750,14 @@ Remark: Returns a new TupleId to the application. ...@@ -750,16 +750,14 @@ Remark: Returns a new TupleId to the application.
The TupleId comes from SYSTAB_0 where SYSKEY_0 = TableId. The TupleId comes from SYSTAB_0 where SYSKEY_0 = TableId.
It is initialized to (TableId << 48) + 1 in NdbcntrMain.cpp. It is initialized to (TableId << 48) + 1 in NdbcntrMain.cpp.
****************************************************************************/ ****************************************************************************/
#define DEBUG_TRACE(msg) \
// ndbout << __FILE__ << " line: " << __LINE__ << " msg: " << msg << endl
Uint64 Uint64
Ndb::getAutoIncrementValue(const char* aTableName, Uint32 cacheSize) Ndb::getAutoIncrementValue(const char* aTableName, Uint32 cacheSize)
{ {
DBUG_ENTER("getAutoIncrementValue"); DBUG_ENTER("getAutoIncrementValue");
const char * internalTableName = internalizeTableName(aTableName); BaseString internal_tabname(internalize_table_name(aTableName));
Ndb_local_table_info *info= Ndb_local_table_info *info=
theDictionary->get_local_table_info(internalTableName, false); theDictionary->get_local_table_info(internal_tabname, false);
if (info == 0) if (info == 0)
DBUG_RETURN(~(Uint64)0); DBUG_RETURN(~(Uint64)0);
const NdbTableImpl *table= info->m_table_impl; const NdbTableImpl *table= info->m_table_impl;
...@@ -811,7 +809,7 @@ Ndb::getTupleIdFromNdb(Uint32 aTableId, Uint32 cacheSize) ...@@ -811,7 +809,7 @@ Ndb::getTupleIdFromNdb(Uint32 aTableId, Uint32 cacheSize)
Uint64 Uint64
Ndb::readAutoIncrementValue(const char* aTableName) Ndb::readAutoIncrementValue(const char* aTableName)
{ {
DBUG_ENTER("readtAutoIncrementValue"); DBUG_ENTER("readAutoIncrementValue");
const NdbTableImpl* table = theDictionary->getTable(aTableName); const NdbTableImpl* table = theDictionary->getTable(aTableName);
if (table == 0) { if (table == 0) {
theError= theDictionary->getNdbError(); theError= theDictionary->getNdbError();
...@@ -825,7 +823,7 @@ Ndb::readAutoIncrementValue(const char* aTableName) ...@@ -825,7 +823,7 @@ Ndb::readAutoIncrementValue(const char* aTableName)
Uint64 Uint64
Ndb::readAutoIncrementValue(const NdbDictionary::Table * aTable) Ndb::readAutoIncrementValue(const NdbDictionary::Table * aTable)
{ {
DBUG_ENTER("readtAutoIncrementValue"); DBUG_ENTER("readAutoIncrementValue");
if (aTable == 0) if (aTable == 0)
DBUG_RETURN(~(Uint64)0); DBUG_RETURN(~(Uint64)0);
const NdbTableImpl* table = & NdbTableImpl::getImpl(*aTable); const NdbTableImpl* table = & NdbTableImpl::getImpl(*aTable);
...@@ -847,62 +845,63 @@ Ndb::readTupleIdFromNdb(Uint32 aTableId) ...@@ -847,62 +845,63 @@ Ndb::readTupleIdFromNdb(Uint32 aTableId)
bool bool
Ndb::setAutoIncrementValue(const char* aTableName, Uint64 val, bool increase) Ndb::setAutoIncrementValue(const char* aTableName, Uint64 val, bool increase)
{ {
DEBUG_TRACE("setAutoIncrementValue " << val); DBUG_ENTER("setAutoIncrementValue");
const char * internalTableName= internalizeTableName(aTableName); BaseString internal_tabname(internalize_table_name(aTableName));
Ndb_local_table_info *info= Ndb_local_table_info *info=
theDictionary->get_local_table_info(internalTableName, false); theDictionary->get_local_table_info(internal_tabname, false);
if (info == 0) { if (info == 0) {
theError= theDictionary->getNdbError(); theError= theDictionary->getNdbError();
return false; DBUG_RETURN(false);
} }
const NdbTableImpl* table= info->m_table_impl; const NdbTableImpl* table= info->m_table_impl;
return setTupleIdInNdb(table->m_tableId, val, increase); DBUG_RETURN(setTupleIdInNdb(table->m_tableId, val, increase));
} }
bool bool
Ndb::setAutoIncrementValue(const NdbDictionary::Table * aTable, Uint64 val, bool increase) Ndb::setAutoIncrementValue(const NdbDictionary::Table * aTable, Uint64 val, bool increase)
{ {
DEBUG_TRACE("setAutoIncrementValue " << val); DBUG_ENTER("setAutoIncrementValue");
if (aTable == 0) if (aTable == 0)
return ~(Uint64)0; DBUG_RETURN(~(Uint64)0);
const NdbTableImpl* table = & NdbTableImpl::getImpl(*aTable); const NdbTableImpl* table = & NdbTableImpl::getImpl(*aTable);
return setTupleIdInNdb(table->m_tableId, val, increase); DBUG_RETURN(setTupleIdInNdb(table->m_tableId, val, increase));
} }
bool bool
Ndb::setTupleIdInNdb(const char* aTableName, Uint64 val, bool increase ) Ndb::setTupleIdInNdb(const char* aTableName, Uint64 val, bool increase )
{ {
DEBUG_TRACE("setTupleIdInNdb"); DBUG_ENTER("setTupleIdInNdb(const char*, ...)");
const NdbTableImpl* table = theDictionary->getTable(aTableName); const NdbTableImpl* table = theDictionary->getTable(aTableName);
if (table == 0) { if (table == 0) {
theError= theDictionary->getNdbError(); theError= theDictionary->getNdbError();
return false; DBUG_RETURN(false);
} }
return setTupleIdInNdb(table->m_tableId, val, increase); DBUG_RETURN(setTupleIdInNdb(table->m_tableId, val, increase));
} }
bool bool
Ndb::setTupleIdInNdb(Uint32 aTableId, Uint64 val, bool increase ) Ndb::setTupleIdInNdb(Uint32 aTableId, Uint64 val, bool increase )
{ {
DEBUG_TRACE("setTupleIdInNdb"); DBUG_ENTER("setTupleIdInNdb(Uint32, ...)");
if (increase) if (increase)
{ {
if (theFirstTupleId[aTableId] != theLastTupleId[aTableId]) if (theFirstTupleId[aTableId] != theLastTupleId[aTableId])
{ {
// We have a cache sequence // We have a cache sequence
if (val <= theFirstTupleId[aTableId]+1) if (val <= theFirstTupleId[aTableId]+1)
return false; DBUG_RETURN(false);
if (val <= theLastTupleId[aTableId]) if (val <= theLastTupleId[aTableId])
{ {
theFirstTupleId[aTableId] = val - 1; theFirstTupleId[aTableId] = val - 1;
return true; DBUG_RETURN(true);
} }
// else continue; // else continue;
} }
return (opTupleIdOnNdb(aTableId, val, 2) == val); DBUG_RETURN((opTupleIdOnNdb(aTableId, val, 2) == val));
} }
else else
return (opTupleIdOnNdb(aTableId, val, 1) == val); DBUG_RETURN((opTupleIdOnNdb(aTableId, val, 1) == val));
} }
Uint64 Uint64
...@@ -1142,25 +1141,63 @@ Ndb::externalizeIndexName(const char * internalIndexName) ...@@ -1142,25 +1141,63 @@ Ndb::externalizeIndexName(const char * internalIndexName)
return externalizeIndexName(internalIndexName, usingFullyQualifiedNames()); return externalizeIndexName(internalIndexName, usingFullyQualifiedNames());
} }
const char *
Ndb::internalizeTableName(const char * externalTableName) const BaseString
Ndb::internalize_table_name(const char *external_name) const
{ {
BaseString ret;
DBUG_ENTER("internalize_table_name");
DBUG_PRINT("enter", ("external_name: %s", external_name));
if (fullyQualifiedNames) if (fullyQualifiedNames)
return theImpl->internalize_table_name(externalTableName); {
/* Internal table name format <db>/<schema>/<table>
<db>/<schema> is already available in m_prefix
so just concat the two strings
*/
ret.assfmt("%s%s",
theImpl->m_prefix.c_str(),
external_name);
}
else else
return externalTableName; ret.assign(external_name);
DBUG_PRINT("exit", ("internal_name: %s", ret.c_str()));
DBUG_RETURN(ret);
} }
const char *
Ndb::internalizeIndexName(const NdbTableImpl * table, const BaseString
const char * externalIndexName) Ndb::internalize_index_name(const NdbTableImpl * table,
const char * external_name) const
{ {
BaseString ret;
DBUG_ENTER("internalize_index_name");
DBUG_PRINT("enter", ("external_name: %s, table_id: %d",
external_name, table ? table->m_tableId : ~0));
if (!table)
{
DBUG_PRINT("error", ("!table"));
return ret;
}
if (fullyQualifiedNames) if (fullyQualifiedNames)
return theImpl->internalize_index_name(table, externalIndexName); {
/* Internal index name format <db>/<schema>/<tabid>/<table> */
ret.assfmt("%s%d%c%s",
theImpl->m_prefix.c_str(),
table->m_tableId,
table_name_separator,
external_name);
}
else else
return externalIndexName; ret.assign(external_name);
DBUG_PRINT("exit", ("internal_name: %s", ret.c_str()));
DBUG_RETURN(ret);
} }
const BaseString const BaseString
Ndb::getDatabaseFromInternalName(const char * internalName) Ndb::getDatabaseFromInternalName(const char * internalName)
{ {
......
...@@ -773,9 +773,11 @@ NdbDictionary::Dictionary::getTable(const char * name) const ...@@ -773,9 +773,11 @@ NdbDictionary::Dictionary::getTable(const char * name) const
void void
NdbDictionary::Dictionary::invalidateTable(const char * name){ NdbDictionary::Dictionary::invalidateTable(const char * name){
DBUG_ENTER("NdbDictionaryImpl::invalidateTable");
NdbTableImpl * t = m_impl.getTable(name); NdbTableImpl * t = m_impl.getTable(name);
if(t) if(t)
m_impl.invalidateObject(* t); m_impl.invalidateObject(* t);
DBUG_VOID_RETURN;
} }
void void
...@@ -811,11 +813,13 @@ NdbDictionary::Dictionary::getIndex(const char * indexName, ...@@ -811,11 +813,13 @@ NdbDictionary::Dictionary::getIndex(const char * indexName,
void void
NdbDictionary::Dictionary::invalidateIndex(const char * indexName, NdbDictionary::Dictionary::invalidateIndex(const char * indexName,
const char * tableName){ const char * tableName){
DBUG_ENTER("NdbDictionaryImpl::invalidateIndex");
NdbIndexImpl * i = m_impl.getIndex(indexName, tableName); NdbIndexImpl * i = m_impl.getIndex(indexName, tableName);
if(i) { if(i) {
assert(i->m_table != 0); assert(i->m_table != 0);
m_impl.invalidateObject(* i->m_table); m_impl.invalidateObject(* i->m_table);
} }
DBUG_VOID_RETURN;
} }
void void
......
This diff is collapsed.
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
#include <ndb_types.h> #include <ndb_types.h>
#include <kernel_types.h> #include <kernel_types.h>
#include <ndb_limits.h>
#include <NdbError.hpp> #include <NdbError.hpp>
#include <BaseString.hpp> #include <BaseString.hpp>
#include <Vector.hpp> #include <Vector.hpp>
...@@ -309,8 +308,8 @@ public: ...@@ -309,8 +308,8 @@ public:
int listObjects(NdbDictionary::Dictionary::List& list, Uint32 requestData, bool fullyQualifiedNames); int listObjects(NdbDictionary::Dictionary::List& list, Uint32 requestData, bool fullyQualifiedNames);
int listObjects(NdbApiSignal* signal); int listObjects(NdbApiSignal* signal);
NdbTableImpl * getTable(int tableId, bool fullyQualifiedNames); /* NdbTableImpl * getTable(int tableId, bool fullyQualifiedNames); */
NdbTableImpl * getTable(const char * name, bool fullyQualifiedNames); NdbTableImpl * getTable(const BaseString& name, bool fullyQualifiedNames);
NdbTableImpl * getTable(class NdbApiSignal * signal, NdbTableImpl * getTable(class NdbApiSignal * signal,
LinearSectionPtr ptr[3], LinearSectionPtr ptr[3],
Uint32 noOfSections, bool fullyQualifiedNames); Uint32 noOfSections, bool fullyQualifiedNames);
...@@ -368,8 +367,6 @@ private: ...@@ -368,8 +367,6 @@ private:
Uint32 m_fragmentId; Uint32 m_fragmentId;
UtilBuffer m_buffer; UtilBuffer m_buffer;
// Buffer used when requesting a table by name
UtilBuffer m_namebuf;
}; };
class NdbDictionaryImpl : public NdbDictionary::Dictionary { class NdbDictionaryImpl : public NdbDictionary::Dictionary {
...@@ -406,13 +403,12 @@ public: ...@@ -406,13 +403,12 @@ public:
int listObjects(List& list, NdbDictionary::Object::Type type); int listObjects(List& list, NdbDictionary::Object::Type type);
int listIndexes(List& list, Uint32 indexId); int listIndexes(List& list, Uint32 indexId);
NdbTableImpl * getTable(const char * tableName, void **data= 0); NdbTableImpl * getTable(const char * tableName, void **data= 0);
Ndb_local_table_info * get_local_table_info(const char * internalName, Ndb_local_table_info* get_local_table_info(
bool do_add_blob_tables); const BaseString& internalTableName, bool do_add_blob_tables);
NdbIndexImpl * getIndex(const char * indexName, NdbIndexImpl * getIndex(const char * indexName,
const char * tableName); const char * tableName);
NdbIndexImpl * getIndexImpl(const char * name, const char * internalName);
NdbEventImpl * getEvent(const char * eventName); NdbEventImpl * getEvent(const char * eventName);
NdbEventImpl * getEventImpl(const char * internalName); NdbEventImpl * getEventImpl(const char * internalName);
...@@ -430,7 +426,9 @@ public: ...@@ -430,7 +426,9 @@ public:
NdbDictInterface m_receiver; NdbDictInterface m_receiver;
Ndb & m_ndb; Ndb & m_ndb;
private: private:
Ndb_local_table_info * fetchGlobalTableImpl(const char * internalName); NdbIndexImpl * getIndexImpl(const char * name,
const BaseString& internalName);
Ndb_local_table_info * fetchGlobalTableImpl(const BaseString& internalName);
}; };
inline inline
...@@ -638,26 +636,27 @@ NdbDictionaryImpl::getImpl(const NdbDictionary::Dictionary & t){ ...@@ -638,26 +636,27 @@ NdbDictionaryImpl::getImpl(const NdbDictionary::Dictionary & t){
*/ */
inline inline
NdbTableImpl * NdbTableImpl *
NdbDictionaryImpl::getTable(const char * tableName, void **data) NdbDictionaryImpl::getTable(const char * table_name, void **data)
{ {
const BaseString internal_tabname(m_ndb.internalize_table_name(table_name));
Ndb_local_table_info *info= Ndb_local_table_info *info=
get_local_table_info(m_ndb.internalizeTableName(tableName), true); get_local_table_info(internal_tabname, true);
if (info == 0) { if (info == 0)
return 0; return 0;
}
if (data) { if (data)
*data= info->m_local_data; *data= info->m_local_data;
}
return info->m_table_impl; return info->m_table_impl;
} }
inline inline
Ndb_local_table_info * Ndb_local_table_info *
NdbDictionaryImpl::get_local_table_info(const char * internalTableName, NdbDictionaryImpl::get_local_table_info(const BaseString& internalTableName,
bool do_add_blob_tables) bool do_add_blob_tables)
{ {
Ndb_local_table_info *info= m_localHash.get(internalTableName); Ndb_local_table_info *info= m_localHash.get(internalTableName.c_str());
if (info == 0) { if (info == 0) {
info= fetchGlobalTableImpl(internalTableName); info= fetchGlobalTableImpl(internalTableName);
if (info == 0) { if (info == 0) {
...@@ -672,34 +671,35 @@ NdbDictionaryImpl::get_local_table_info(const char * internalTableName, ...@@ -672,34 +671,35 @@ NdbDictionaryImpl::get_local_table_info(const char * internalTableName,
inline inline
NdbIndexImpl * NdbIndexImpl *
NdbDictionaryImpl::getIndex(const char * indexName, NdbDictionaryImpl::getIndex(const char * index_name,
const char * tableName) const char * table_name)
{ {
if (tableName || m_ndb.usingFullyQualifiedNames()) { if (table_name || m_ndb.usingFullyQualifiedNames())
const char * internalIndexName = 0; {
if (tableName) { const BaseString internal_indexname(
NdbTableImpl * t = getTable(tableName); (table_name)
if (t != 0) ?
internalIndexName = m_ndb.internalizeIndexName(t, indexName); m_ndb.internalize_index_name(getTable(table_name), index_name)
} else { :
internalIndexName = m_ndb.internalize_table_name(index_name)); // Index is also a table
m_ndb.internalizeTableName(indexName); // Index is also a table
} if (internal_indexname.length())
if (internalIndexName) { {
Ndb_local_table_info * info = get_local_table_info(internalIndexName, Ndb_local_table_info * info=
false); get_local_table_info(internal_indexname, false);
if (info) { if (info)
NdbTableImpl * tab = info->m_table_impl; {
NdbTableImpl * tab= info->m_table_impl;
if (tab->m_index == 0) if (tab->m_index == 0)
tab->m_index = getIndexImpl(indexName, internalIndexName); tab->m_index= getIndexImpl(index_name, internal_indexname);
if (tab->m_index != 0) if (tab->m_index != 0)
tab->m_index->m_table = tab; tab->m_index->m_table= tab;
return tab->m_index; return tab->m_index;
} }
} }
} }
m_error.code = 4243; m_error.code= 4243;
return 0; return 0;
} }
......
...@@ -65,7 +65,6 @@ public: ...@@ -65,7 +65,6 @@ public:
BaseString m_schemaname; // Schema name BaseString m_schemaname; // Schema name
BaseString m_prefix; // Buffer for preformatted internal name <db>/<schema>/ BaseString m_prefix; // Buffer for preformatted internal name <db>/<schema>/
BaseString m_internalname;
void update_prefix() void update_prefix()
{ {
...@@ -73,23 +72,6 @@ public: ...@@ -73,23 +72,6 @@ public:
m_schemaname.c_str(), table_name_separator); m_schemaname.c_str(), table_name_separator);
} }
const char* internalize_table_name(const char* ext_name)
{
// Internal table name format <db>/<schema>/<table>
return m_internalname.assign(m_prefix).append(ext_name).c_str();
}
const char* internalize_index_name(const NdbTableImpl *table,
const char* ext_name)
{
// Internal index name format <db>/<schema>/<tabid>/<table>
return m_internalname.assign(m_prefix).appfmt("%d%c%s",
table->m_tableId,
table_name_separator,
ext_name).c_str();
}
}; };
#ifdef VM_TRACE #ifdef VM_TRACE
......
...@@ -192,7 +192,7 @@ template <class C> ...@@ -192,7 +192,7 @@ template <class C>
inline inline
Int32 Int32
NdbLinHash<C>::insertKey( const char* str, Uint32 len, Uint32 lkey1, C* data ) NdbLinHash<C>::insertKey( const char* str, Uint32 len, Uint32 lkey1, C* data )
{ {
const Uint32 hash = Hash(str, len); const Uint32 hash = Hash(str, len);
int dir, seg; int dir, seg;
getBucket(hash, &dir, &seg); getBucket(hash, &dir, &seg);
...@@ -219,8 +219,9 @@ NdbLinHash<C>::insertKey( const char* str, Uint32 len, Uint32 lkey1, C* data ) ...@@ -219,8 +219,9 @@ NdbLinHash<C>::insertKey( const char* str, Uint32 len, Uint32 lkey1, C* data )
chain->localkey1 = lkey1; chain->localkey1 = lkey1;
chain->next = 0; chain->next = 0;
chain->theData = data; chain->theData = data;
len++; // Null terminated
chain->str = new Uint32[((len + 3) >> 2)]; chain->str = new Uint32[((len + 3) >> 2)];
memcpy( &chain->str[0], str, len ); memcpy( &chain->str[0], str, len);
if (oldChain != 0) if (oldChain != 0)
oldChain->next = chain; oldChain->next = chain;
else else
......
...@@ -25,7 +25,6 @@ ...@@ -25,7 +25,6 @@
#include "TransporterFacade.hpp" #include "TransporterFacade.hpp"
#include "API.hpp" #include "API.hpp"
#include "NdbBlob.hpp" #include "NdbBlob.hpp"
#include <ndb_limits.h>
#include <signaldata/TcKeyConf.hpp> #include <signaldata/TcKeyConf.hpp>
#include <signaldata/TcIndx.hpp> #include <signaldata/TcIndx.hpp>
...@@ -1287,10 +1286,9 @@ NdbTransaction::getNdbIndexOperation(const char* anIndexName, ...@@ -1287,10 +1286,9 @@ NdbTransaction::getNdbIndexOperation(const char* anIndexName,
{ {
// This unique index is defined from SQL level // This unique index is defined from SQL level
static const char* uniqueSuffix= "$unique"; static const char* uniqueSuffix= "$unique";
char uniqueIndexName[MAX_TAB_NAME_SIZE]; BaseString uniqueIndexName(anIndexName);
uniqueIndexName.append(uniqueSuffix);
strxnmov(uniqueIndexName, MAX_TAB_NAME_SIZE, anIndexName, uniqueSuffix, NullS); index = theNdb->theDictionary->getIndex(uniqueIndexName.c_str(),
index = theNdb->theDictionary->getIndex(uniqueIndexName,
aTableName); aTableName);
} }
else else
......
...@@ -4709,7 +4709,7 @@ int ndbcluster_find_files(THD *thd,const char *db,const char *path, ...@@ -4709,7 +4709,7 @@ int ndbcluster_find_files(THD *thd,const char *db,const char *path,
List_iterator_fast<char> it2(create_list); List_iterator_fast<char> it2(create_list);
while ((file_name=it2++)) while ((file_name=it2++))
{ {
DBUG_PRINT("info", ("Table %s need discovery", name)); DBUG_PRINT("info", ("Table %s need discovery", file_name));
if (ha_create_table_from_engine(thd, db, file_name, TRUE) == 0) if (ha_create_table_from_engine(thd, db, file_name, TRUE) == 0)
files->push_back(thd->strdup(file_name)); files->push_back(thd->strdup(file_name));
} }
......
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