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

Checkpointing, not ready to build yet.

This commit is contained in:
Patrick LeBlanc
2019-01-21 16:41:04 -06:00
parent d53471fc75
commit d84dcb9ccc
6 changed files with 266 additions and 9 deletions

View File

@ -8,7 +8,8 @@ namespace idbdatafile {
class SMComm : public boost::noncopyable
{
public:
SMComm *get();
// This is a singleton. Get it with get()
static SMComm *get();
/* Open currently returns a stat struct so SMDataFile can set its initial position, otherwise
behaves how you'd think. */
@ -42,13 +43,8 @@ class SMComm : public boost::noncopyable
SMComm();
SocketPool sockets;
};
}
}
#endif