1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

MCOL-5512 Fix for post join filter.

This patch fixes certain situations where post join filter is not applying.
This commit is contained in:
Denis Khalikov
2023-06-09 11:15:02 +03:00
parent ab9b95e368
commit 024e6bd358
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);