You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-4753 Performance problem in Typeless join
This commit is contained in:
committed by
Roman Nozdrin
parent
c6d0b46bc6
commit
b3d6f62964
@ -593,7 +593,7 @@ int ColumnBufferCompressed::saveCompressionHeaders( )
|
||||
// If lbid written in the header is not 0 and not equal to `lastupdatedlbid` - we are running
|
||||
// for the next extent for column segment file.
|
||||
const auto lastUpdatedLbid = fColInfo->getLastUpdatedLBID();
|
||||
if (lbid && (uint64_t)lastUpdatedLbid != lbid)
|
||||
if (lbid && lastUpdatedLbid != lbid)
|
||||
{
|
||||
// Write back lbid, after header initialization.
|
||||
fCompressor->setLBIDByIndex(hdrBuf, lbid, 0);
|
||||
|
Reference in New Issue
Block a user