Commit 6527c6fe authored by unknown's avatar unknown

Bugfix for bug#5072, removed table version in BLOB table name since this is...

Bugfix for bug#5072, removed table version in BLOB table name since this is incremented at alter table


parent 0432bec3
...@@ -83,7 +83,7 @@ NdbBlob::getBlobTableName(char* btname, const NdbTableImpl* t, const NdbColumnIm ...@@ -83,7 +83,7 @@ NdbBlob::getBlobTableName(char* btname, const NdbTableImpl* t, const NdbColumnIm
{ {
assert(t != 0 && c != 0 && c->getBlobType()); assert(t != 0 && c != 0 && c->getBlobType());
memset(btname, 0, BlobTableNameSize); memset(btname, 0, BlobTableNameSize);
sprintf(btname, "NDB$BLOB_%d_%d_%d", (int)t->m_tableId, (int)t->m_version, (int)c->m_attrId); sprintf(btname, "NDB$BLOB_%d_%d", (int)t->m_tableId, (int)c->m_attrId);
} }
void void
......
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