1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-18 13:54:11 +03:00

Filled in some key manipulation stubs.

This commit is contained in:
Patrick LeBlanc
2019-03-21 14:45:51 -05:00
parent 07b4bdd19c
commit 719cf3f2fa
2 changed files with 26 additions and 8 deletions

View File

@@ -48,8 +48,8 @@ class MetadataFile
static off_t getOffsetFromKey(const std::string &key);
static std::string getSourceFromKey(const std::string &key);
static size_t getLengthFromKey(const std::string &key);
static void setOffset(std::string &key, off_t newOffset);
static void setLength(std::string &key, size_t newLength);
static void setOffsetInKey(std::string &key, off_t newOffset);
static void setLengthInKey(std::string &key, size_t newLength);
private: