1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

MCOL-3577: Add functionality to sync S3 storage for suspendDatabaseWrites.

This commit is contained in:
benthompson15
2019-11-20 11:57:55 -06:00
parent dbb9b21d26
commit 5bbd21b8e0
13 changed files with 189 additions and 4 deletions

View File

@ -110,4 +110,9 @@ bool SMFileSystem::filesystemIsUp() const
return (comm->ping() == 0);
}
bool SMFileSystem::filesystemSync() const
{
SMComm *comm = SMComm::get();
return (comm->sync() == 0);
}
}