You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-498 Changes made according with review suggestions.
Add more comments. Changed return value for HDFS'es fallocate. Removed unnecessary code in ColumnBufferCompressed::writeToFile Replaced Nulls with Empties in variable names.
This commit is contained in:
@ -279,6 +279,12 @@ int BufferedFile::close()
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
@brief
|
||||
The wrapper for fallocate function.
|
||||
@see
|
||||
This one is used in shared/we_fileop.cpp to skip expensive file preallocation.
|
||||
*/
|
||||
int BufferedFile::fallocate(int mode, off64_t offset, off64_t length)
|
||||
{
|
||||
int ret = 0;
|
||||
|
Reference in New Issue
Block a user