1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

feat(RGData,StringStore): add counting allocator capabilities to those ctors used in BPP::execute()

This commit is contained in:
drrtuy
2024-11-30 18:51:29 +00:00
parent 02b8ea1331
commit 5f1bd3be12
14 changed files with 300 additions and 126 deletions

View File

@@ -790,7 +790,7 @@ void BatchPrimitiveProcessorJL::getRowGroupData(ByteStream& in, vector<RGData>*
if (in.length() == 0)
{
// done, return an empty RG
rgData = RGData(org, 0);
rgData = RGData(org, 0U);
org.setData(&rgData);
org.resetRowGroup(0);
out->push_back(rgData);
@@ -925,7 +925,7 @@ RGData BatchPrimitiveProcessorJL::getErrorRowGroupData(uint16_t error) const
RGData ret;
rowgroup::RowGroup rg(projectionRG);
ret = RGData(rg, 0);
ret = RGData(rg, 0U);
rg.setData(&ret);
// rg.convertToInlineDataInPlace();
rg.resetRowGroup(0);