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-5385: Delete RowGroup::setData and make Pointer ctor explicit (#2808)
* Delete RowGroup::setData and make Pointer ctor explicit * some push_backs replaced with emplace_backs * Fixes of review notes
This commit is contained in:
@ -322,7 +322,8 @@ void GroupConcatAgUM::initialize()
|
||||
|
||||
fGroupConcat->fRowGroup.initRow(&fRow, true);
|
||||
fData.reset(new uint8_t[fRow.getSize()]);
|
||||
fRow.setData(fData.get());
|
||||
|
||||
fRow.setData(rowgroup::Row::Pointer(fData.get()));
|
||||
}
|
||||
|
||||
void GroupConcatAgUM::processRow(const rowgroup::Row& inRow)
|
||||
|
Reference in New Issue
Block a user