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
fix(TNS): fix for duplicate DISTINCT output
This commit is contained in:
@ -582,12 +582,6 @@ void TupleAnnexStep::executeNoOrderByWithDistinct()
|
||||
if (fRowGroupOut.getRowCount() > 0)
|
||||
dataVec.push_back(rgDataOut);
|
||||
|
||||
for (vector<RGData>::iterator i = dataVec.begin(); i != dataVec.end(); i++)
|
||||
{
|
||||
rgDataOut = *i;
|
||||
fRowGroupOut.setData(&rgDataOut);
|
||||
fOutputDL->insert(rgDataOut);
|
||||
}
|
||||
while (!dataVec.empty())
|
||||
{
|
||||
auto& rgData = dataVec.back();
|
||||
|
Reference in New Issue
Block a user