1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-06-13 16:01:32 +03:00

Added remaining methods in SMFileSystem to the test.

This commit is contained in:
Patrick LeBlanc
2019-01-24 17:05:09 -06:00
parent acb464618c
commit a2c789d52a
2 changed files with 23 additions and 2 deletions

View File

@ -45,7 +45,7 @@ off64_t SMFileSystem::size(const char *filename) const
SMComm *smComm = SMComm::get();
int err = smComm->stat(filename, &_stat);
if (!err)
if (err)
return err;
return _stat.st_size;