Below is the list of changes that have just been committed into a local
5.1 repository of stewart. When stewart does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.2038 05/10/06 22:39:37 stewart@stripped +1 -0
WL#2076 Extra ndbd statistics
return the amount of free space in a datafile in bytes, not number of extents.
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
1.113 05/10/06 22:39:33 stewart@stripped +1 -1
return free size for datafile in bytes, not extents.
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: stewart
# Host: willster.(none)
# Root: /home/stewart/Documents/MySQL/5.1/ndb-dd
--- 1.112/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp 2005-10-06 21:29:19 +10:00
+++ 1.113/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp 2005-10-06 22:39:33 +10:00
@@ -3985,7 +3985,6 @@
dst.m_id= f.FileNo;
dst.m_size= ((Uint64)f.FileSizeHi << 32) | (f.FileSizeLo);
- dst.m_free= f.FileFreeExtents;
dst.m_path.assign(f.FileName);
if(dst.m_type==NdbDictionary::Object::Undofile)
@@ -4003,6 +4002,7 @@
NdbDictionary::Object::Tablespace,
f.FilegroupId);
dst.m_filegroup_name.assign(tmp.getName());
+ dst.m_free= f.FileFreeExtents * tmp.getExtentSize();
}
else
dst.m_filegroup_name.assign("Not Yet Implemented");
| Thread |
|---|
| • bk commit into 5.1 tree (stewart:1.2038) | Stewart Smith | 6 Oct |