You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
MCOL-498 Returned changes in we_colbufcompressed.* b/c they are neccesary
to track compressed data size.
This commit is contained in:
@ -573,7 +573,7 @@ int ColumnBufferManager::writeToFileExtentCheck(
|
||||
|
||||
if (availableFileSize >= writeSize)
|
||||
{
|
||||
int rc = fCBuf->writeToFile(startOffset, writeSize);
|
||||
int rc = fCBuf->writeToFile(startOffset, writeSize, fillUpWEmpties);
|
||||
|
||||
if (rc != NO_ERROR)
|
||||
{
|
||||
@ -632,7 +632,7 @@ int ColumnBufferManager::writeToFileExtentCheck(
|
||||
}
|
||||
|
||||
int writeSize2 = writeSize - writeSize1;
|
||||
rc = fCBuf->writeToFile(startOffset + writeSize1, writeSize2);
|
||||
rc = fCBuf->writeToFile(startOffset + writeSize1, writeSize2, fillUpWEmpties);
|
||||
|
||||
if (rc != NO_ERROR)
|
||||
{
|
||||
|
Reference in New Issue
Block a user