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
Add PrimProc support for selective block loading for 16-byte columns.
This commit is contained in:
@ -351,8 +351,8 @@ void BatchPrimitiveProcessorJL::addElementType(const ElementType& et, uint32_t d
|
||||
absRids[ridCount] = et.first;
|
||||
else
|
||||
{
|
||||
relRids[ridCount] = et.first & 0x1fff; // 8192 rows per logical block
|
||||
ridMap |= 1 << (relRids[ridCount] >> 10); // LSB -> 0-1023, MSB -> 7168-8191
|
||||
relRids[ridCount] = et.first & 0x1fff; // 8192 rows per logical block
|
||||
ridMap |= 1 << (relRids[ridCount] >> 9); // LSB -> 0-511, MSB -> 7680-8191
|
||||
}
|
||||
|
||||
if (sendValues)
|
||||
|
Reference in New Issue
Block a user