Fixed wrong comment GetTableMetaData -> GetLiveFilesMetaData

This commit is contained in:
Igor Canadi 2014-02-10 10:55:10 -08:00
parent 9a270f3f6d
commit bc2ff597b8

View File

@ -260,7 +260,7 @@ class DB {
// GetLiveFiles followed by GetSortedWalFiles can generate a lossless backup // GetLiveFiles followed by GetSortedWalFiles can generate a lossless backup
// THIS METHOD IS DEPRECATED. Use the GetTableMetaData to get more // THIS METHOD IS DEPRECATED. Use the GetLiveFilesMetaData to get more
// detailed information on the live files. // detailed information on the live files.
// Retrieve the list of all files in the database. The files are // Retrieve the list of all files in the database. The files are
// relative to the dbname and are not absolute paths. The valid size of the // relative to the dbname and are not absolute paths. The valid size of the
@ -301,9 +301,7 @@ class DB {
// Returns a list of all table files with their level, start key // Returns a list of all table files with their level, start key
// and end key // and end key
virtual void GetLiveFilesMetaData( virtual void GetLiveFilesMetaData(std::vector<LiveFileMetaData>* metadata) {}
std::vector<LiveFileMetaData> *metadata) {
}
// Sets the globally unique ID created at database creation time by invoking // Sets the globally unique ID created at database creation time by invoking
// Env::GenerateUniqueId(), in identity. Returns Status::OK if identity could // Env::GenerateUniqueId(), in identity. Returns Status::OK if identity could