You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-07 09:01:10 +03:00
MCOL-5385 set data extermination [develop-23.02] (#2813)
* Delete RowGroup::setData and make Pointer ctor explicit * some push_backs replaced with emplace_backs * Fixes of review notes
This commit is contained in:
@ -996,7 +996,7 @@ void BatchPrimitiveProcessor::initProcessor()
|
||||
{
|
||||
joinFERG->initRow(&joinFERow, true);
|
||||
joinFERowData.reset(new uint8_t[joinFERow.getSize()]);
|
||||
joinFERow.setData(joinFERowData.get());
|
||||
joinFERow.setData(rowgroup::Row::Pointer(joinFERowData.get()));
|
||||
joinFEMappings.reset(new shared_array<int>[joinerCount + 1]);
|
||||
|
||||
for (i = 0; i < joinerCount; i++)
|
||||
@ -1058,7 +1058,7 @@ void BatchPrimitiveProcessor::initProcessor()
|
||||
smallSideRGs[i].initRow(&smallRows[i], true);
|
||||
|
||||
baseJRowMem.reset(new uint8_t[baseJRow.getSize()]);
|
||||
baseJRow.setData(baseJRowMem.get());
|
||||
baseJRow.setData(rowgroup::Row::Pointer(baseJRowMem.get()));
|
||||
gjrgMappings.reset(new shared_array<int>[joinerCount + 1]);
|
||||
|
||||
for (i = 0; i < joinerCount; i++)
|
||||
|
Reference in New Issue
Block a user