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-5152 This patch enables PP to put ByteStreams into DEC input queue directly for a local PP-EM connection
This commit is contained in:
@ -1243,7 +1243,7 @@ void BatchPrimitiveProcessorJL::createBPP(ByteStream& bs) const
|
||||
* (projection count)x run msgs for projection Commands
|
||||
*/
|
||||
|
||||
void BatchPrimitiveProcessorJL::runBPP(ByteStream& bs, uint32_t pmNum)
|
||||
void BatchPrimitiveProcessorJL::runBPP(ByteStream& bs, uint32_t pmNum, bool isExeMgrDEC)
|
||||
{
|
||||
ISMPacketHeader ism;
|
||||
uint32_t i;
|
||||
@ -1276,6 +1276,8 @@ void BatchPrimitiveProcessorJL::runBPP(ByteStream& bs, uint32_t pmNum)
|
||||
|
||||
bs << dbRoot;
|
||||
bs << count;
|
||||
uint8_t sentByEM = (isExeMgrDEC) ? 1 : 0;
|
||||
bs << sentByEM;
|
||||
|
||||
if (_hasScan)
|
||||
idbassert(ridCount == 0);
|
||||
|
Reference in New Issue
Block a user