1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-15 12:09:09 +03:00

Simlified IOC::open, removed a couple debugging printouts.

This commit is contained in:
Patrick LeBlanc
2019-03-29 08:18:36 -05:00
parent 9be168eb64
commit 52560a72dd
2 changed files with 3 additions and 13 deletions

View File

@@ -196,12 +196,8 @@ int MetadataFile::stat(struct stat *out) const
{
int err = ::stat(mFilename.c_str(), out);
if (err)
{
cout << "Failed to stat " << mFilename << endl;
return err;
}
cout << "Got the stat for " << mFilename << endl;
size_t totalSize = 0;
for (auto &object : mObjects)
totalSize += object.length;