Commit ac84ebf6 authored by unknown's avatar unknown

ndb - bug#28642 - Tablespace returning incorrect usage status

  make free 64 bit (as it represents free bytes, not free extents as originally designed)


storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp:
  make free 64 bit (as it represents free bytes, not free extents as originally designed)
parent fb349433
...@@ -390,7 +390,7 @@ struct NdbFileImpl : public NdbDictObjectImpl { ...@@ -390,7 +390,7 @@ struct NdbFileImpl : public NdbDictObjectImpl {
NdbFileImpl(NdbDictionary::Object::Type t); NdbFileImpl(NdbDictionary::Object::Type t);
Uint64 m_size; Uint64 m_size;
Uint32 m_free; Uint64 m_free;
BaseString m_path; BaseString m_path;
BaseString m_filegroup_name; BaseString m_filegroup_name;
Uint32 m_filegroup_id; Uint32 m_filegroup_id;
......
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