summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <mskold@mysql.com>2004-08-20 14:04:29 +0200
committerunknown <mskold@mysql.com>2004-08-20 14:04:29 +0200
commit6527c6fee7ef0ed29f22a19a8a0f18303b98ab8a (patch)
tree0dbe0b026d63b148f3727efe665e77c7e1c60297
parent0432bec3117059696f2cb322ba597accc329fa03 (diff)
downloadmariadb-git-6527c6fee7ef0ed29f22a19a8a0f18303b98ab8a.tar.gz
Bugfix for bug#5072, removed table version in BLOB table name since this is incremented at alter table
-rw-r--r--ndb/src/ndbapi/NdbBlob.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/ndbapi/NdbBlob.cpp b/ndb/src/ndbapi/NdbBlob.cpp
index 72990870bf8..431be574bbf 100644
--- a/ndb/src/ndbapi/NdbBlob.cpp
+++ b/ndb/src/ndbapi/NdbBlob.cpp
@@ -83,7 +83,7 @@ NdbBlob::getBlobTableName(char* btname, const NdbTableImpl* t, const NdbColumnIm
{
assert(t != 0 && c != 0 && c->getBlobType());
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