1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +03:00

MCOL-5512 Fix for post join filter. (#2880)

This patch fixes certain situations where post join filter is not applying.
This commit is contained in:
Denis Khalikov
2023-06-27 18:25:33 +03:00
committed by GitHub
parent d775c23b86
commit d70a70b772
2 changed files with 14 additions and 1 deletions

View File

@@ -281,7 +281,7 @@ uint64_t TupleBPS::JoinLocalData::generateJoinResultSet(const uint32_t depth,
{
// Don't wait for memory, just send the data on to DL.
RowGroup out(local_outputRG);
if (fe2 && tbps->runFEonPM())
if (fe2 && !tbps->runFEonPM())
{
processFE2(outputData);
tbps->rgDataVecToDl(outputData, local_fe2Output, dlp);