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-4173 This patch adds support for wide-DECIMAL INNER, OUTER, SEMI, functional JOINs
based on top of TypelessData
This commit is contained in:
@ -1320,6 +1320,12 @@ RowGroup& RowGroup::operator=(const RowGroup& r)
|
||||
return *this;
|
||||
}
|
||||
|
||||
RowGroup::RowGroup(ByteStream& bs): columnCount(0), data(nullptr), rgData(nullptr), strings(nullptr),
|
||||
useStringTable(true), hasCollation(false), hasLongStringField(false), sTableThreshold(20)
|
||||
{
|
||||
this->deserialize(bs);
|
||||
}
|
||||
|
||||
RowGroup::~RowGroup()
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user