1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-06-12 05:01:56 +03:00

MCOL-5522 Temporary disable join match limit on BPP

Current join pipeline is not designed to send a temporal result and
continue execution. RowGroup for large side is the same where we store
the matched rows, we cannot continue to iterate over it, requires a
proper refactoring.
This commit is contained in:
Denis Khalikov
2023-07-09 17:31:01 +03:00
parent 385e580e9c
commit a079834288

View File

@ -1409,8 +1409,9 @@ uint32_t BatchPrimitiveProcessor::executeTupleJoin(uint32_t startRid)
// The caller will restart to continue where we left off.
if (resultCount >= maxResultCount)
{
newStartRid += newRowCount;
break;
// FIXME: Implement proper pipleline. (MCOL-5522).
cerr << "BPP join match count exceeded the limit, match count: " << resultCount << endl;
resultCount = 0;
}
}