You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
MCOL-515 Fix cross engine for FE2/3 modes
When subqueries and group by are used in CrossEngine the first row group is either corrupted or ignored. This is related to MCOL-430 which fixed the case for FE1 mode.
This commit is contained in:
@@ -225,7 +225,7 @@ void CrossEngineStep::setFcnExpGroup3(const vector<execplan::SRCP>& fe)
|
||||
|
||||
void CrossEngineStep::setFE23Output(const rowgroup::RowGroup& rg)
|
||||
{
|
||||
fRowGroupFe3 = fRowGroupDelivered = rg;
|
||||
fRowGroupFe3 = fRowGroupDelivered = fRowGroupAdded = rg;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user