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-5213] Fix a rare IO error
This commit is contained in:
@ -1556,9 +1556,10 @@ bool RowAggStorage::getTargetRow(const Row& row, uint64_t hash, Row& rowOut)
|
||||
!fEnabledDiskAggregation, fCompressor.get()));
|
||||
if (fExtKeys)
|
||||
{
|
||||
fKeysStorage = new RowGroupStorage(fTmpDir, fKeysRowGroup, fMaxRows, fMM->getResourceManaged(),
|
||||
fRealKeysStorage.reset(new RowGroupStorage(fTmpDir, fKeysRowGroup, fMaxRows, fMM->getResourceManaged(),
|
||||
fMM->getSessionLimit(), !fEnabledDiskAggregation,
|
||||
!fEnabledDiskAggregation, fCompressor.get());
|
||||
!fEnabledDiskAggregation, fCompressor.get()));
|
||||
fKeysStorage = fRealKeysStorage.get();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user