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
Merge branch 'develop' into MCOL-4841
# Conflicts: # exemgr/main.cpp # oam/etc/Columnstore.xml.singleserver # primitives/primproc/primproc.cpp
This commit is contained in:
@ -373,7 +373,15 @@ void GroupConcatAgUM::applyMapping(const boost::shared_array<int>& mapping, cons
|
||||
}
|
||||
else
|
||||
{
|
||||
fRow.setIntField(row.getIntField(mapping[i]), i);
|
||||
if (fRow.getColTypes()[i] == execplan::CalpontSystemCatalog::CHAR ||
|
||||
fRow.getColTypes()[i] == execplan::CalpontSystemCatalog::VARCHAR)
|
||||
{
|
||||
fRow.setIntField(row.getUintField(mapping[i]), i);
|
||||
}
|
||||
else
|
||||
{
|
||||
fRow.setIntField(row.getIntField(mapping[i]), i);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1050,4 +1058,3 @@ const string GroupConcatNoOrder::toString() const
|
||||
}
|
||||
|
||||
} // namespace joblist
|
||||
// vim:ts=4 sw=4:
|
||||
|
Reference in New Issue
Block a user