1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Updated the storage-manager ref. Made SMComm send absolute

paths rather than relative ones.
This commit is contained in:
Patrick LeBlanc
2019-02-01 13:13:30 -06:00
parent a9a5c2ebb7
commit 8ad3188162
5 changed files with 60 additions and 17 deletions

View File

@ -59,13 +59,18 @@ class SMComm : public boost::noncopyable
// the specified S3 bucket. Need to define specific error codes.
int ping();
int copyFile(const std::string &file1, const std::string &file2);
virtual ~SMComm();
private:
SMComm();
std::string getAbsFilename(const std::string &filename);
SocketPool sockets;
messageqcpp::ByteStreamPool buffers;
std::string cwd;
};
}