You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-4173 This patch adds support for wide-DECIMAL INNER, OUTER, SEMI, functional JOINs
based on top of TypelessData
This commit is contained in:
@ -1736,13 +1736,13 @@ void TupleHashJoinStep::joinOneRG(uint32_t threadID, vector<RGData>* out,
|
||||
{
|
||||
(*tjoiners)[j]->match(largeSideRow, k, threadID, &joinMatches[j]);
|
||||
/* Debugging code to print the matches
|
||||
Row r;
|
||||
smallRGs[j].initRow(&r);
|
||||
cout << joinMatches[j].size() << " matches: \n";
|
||||
for (uint32_t z = 0; z < joinMatches[j].size(); z++) {
|
||||
r.setData(joinMatches[j][z]);
|
||||
cout << " " << r.toString() << endl;
|
||||
}
|
||||
Row r;
|
||||
smallRGs[j].initRow(&r);
|
||||
cout << joinMatches[j].size() << " matches: \n";
|
||||
for (uint32_t z = 0; z < joinMatches[j].size(); z++) {
|
||||
r.setData(joinMatches[j][z]);
|
||||
cout << " " << r.toString() << endl;
|
||||
}
|
||||
*/
|
||||
matchCount = joinMatches[j].size();
|
||||
|
||||
|
Reference in New Issue
Block a user