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-3488. Found another one.
This commit is contained in:
@ -1050,8 +1050,11 @@ void RedistributeWorkerThread::confirmToPeer()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IDBFileSystem& fs = IDBFileSystem::getFs(
|
IDBFileSystem& fs = (IDBPolicy::useHdfs() ?
|
||||||
(IDBPolicy::useHdfs() ? IDBDataFile::HDFS : IDBDataFile::UNBUFFERED) );
|
IDBFileSystem::getFs(IDBDataFile::HDFS) :
|
||||||
|
IDBPolicy::useCloud() ?
|
||||||
|
IDBFileSystem::getFs(IDBDataFile::CLOUD) :
|
||||||
|
IDBFileSystem::getFs(IDBDataFile::BUFFERED));
|
||||||
|
|
||||||
uint32_t confirmCode = RED_DATA_COMMIT;
|
uint32_t confirmCode = RED_DATA_COMMIT;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user