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

fix(disk-based-join): this fixes multiple SEGV for disk-based join algo

This commit is contained in:
drrtuy
2025-04-14 20:37:17 +00:00
parent c9f9cf8988
commit a16fbd137b
3 changed files with 65 additions and 48 deletions

View File

@@ -122,6 +122,10 @@ TupleHashJoinStep::TupleHashJoinStep(const JobInfo& jobInfo)
if (numCores <= 0)
numCores = 8;
// At least one to enable DJ.
joinerRunnerInputRecordsStats.resize(1, 0);
joinerRunnerInputMatchedStats.resize(1, 0);
}
TupleHashJoinStep::~TupleHashJoinStep()