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-5021 Code changes based on review feedback.
This commit is contained in:
@ -265,6 +265,11 @@ void ColumnCommandJL::setLBID(uint64_t rid, uint32_t dbRoot)
|
||||
}
|
||||
}
|
||||
|
||||
if (i == extents.size())
|
||||
{
|
||||
throw logic_error("ColumnCommandJL: setLBID didn't find the extent for the rid.");
|
||||
}
|
||||
|
||||
uint32_t j;
|
||||
|
||||
for (j = 0; j < extentsAux.size(); j++)
|
||||
@ -277,7 +282,7 @@ void ColumnCommandJL::setLBID(uint64_t rid, uint32_t dbRoot)
|
||||
}
|
||||
}
|
||||
|
||||
if (i == extents.size() || (hasAuxCol && j == extentsAux.size()))
|
||||
if (hasAuxCol && j == extentsAux.size())
|
||||
{
|
||||
throw logic_error("ColumnCommandJL: setLBID didn't find the extent for the rid.");
|
||||
}
|
||||
|
Reference in New Issue
Block a user