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

Added SMDataFile::fallocate(), it's just a call to truncate() for now.

Updated ref of storage-manager subproject.
This commit is contained in:
Patrick LeBlanc
2019-04-25 14:15:25 -05:00
parent 1dd328bbb1
commit 3c32f6d888
3 changed files with 8 additions and 1 deletions

View File

@ -36,6 +36,7 @@ class SMDataFile : public IDBDataFile
ssize_t write(const void* ptr, size_t count);
int seek(off64_t offset, int whence);
int truncate(off64_t length);
int fallocate(int mode, off64_t offset, off64_t length);
off64_t size();
off64_t tell();
int flush();