diff options
author | unknown <mskold@mysql.com> | 2004-08-20 14:04:29 +0200 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2004-08-20 14:04:29 +0200 |
commit | 6527c6fee7ef0ed29f22a19a8a0f18303b98ab8a (patch) | |
tree | 0dbe0b026d63b148f3727efe665e77c7e1c60297 | |
parent | 0432bec3117059696f2cb322ba597accc329fa03 (diff) | |
download | mariadb-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.cpp | 2 |
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 |