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
Changes to compile local
This commit is contained in:
@ -789,7 +789,6 @@ class RowGroupStorage
|
||||
void putKeyRow(uint64_t idx, Row& row)
|
||||
{
|
||||
uint64_t rgid = idx / fMaxRows;
|
||||
uint64_t rid = idx % fMaxRows;
|
||||
|
||||
while (rgid >= fRGDatas.size())
|
||||
{
|
||||
@ -819,7 +818,7 @@ class RowGroupStorage
|
||||
|
||||
fLRU->add(rgid);
|
||||
|
||||
assert(rid == fRowGroupOut->getRowCount());
|
||||
assert(idx % fMaxRows == fRowGroupOut->getRowCount());
|
||||
fRowGroupOut->getRow(fRowGroupOut->getRowCount(), &row);
|
||||
fRowGroupOut->incRowCount();
|
||||
}
|
||||
|
Reference in New Issue
Block a user