summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authorjonas@perch.ndb.mysql.com <>2007-07-03 16:29:25 +0200
committerjonas@perch.ndb.mysql.com <>2007-07-03 16:29:25 +0200
commit7fbcaa87b5966e99b74eca48d7a32a451aca2238 (patch)
treee162899600931b7866537ef76a4bb41f1f11c53e /storage
parentb940b92ede0f53088668738ddf910c1c0b966852 (diff)
downloadmariadb-git-7fbcaa87b5966e99b74eca48d7a32a451aca2238.tar.gz
ndb - bug#28642 - Tablespace returning incorrect usage status
make free 64 bit (as it represents free bytes, not free extents as originally designed)
Diffstat (limited to 'storage')
-rw-r--r--storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp b/storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp
index 68ca4edb5d0..f2b3173beff 100644
--- a/storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp
+++ b/storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp
@@ -390,7 +390,7 @@ struct NdbFileImpl : public NdbDictObjectImpl {
NdbFileImpl(NdbDictionary::Object::Type t);
Uint64 m_size;
- Uint32 m_free;
+ Uint64 m_free;
BaseString m_path;
BaseString m_filegroup_name;
Uint32 m_filegroup_id;