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-4699] Add support for circular outer joins.
This commit is contained in:
@ -1092,7 +1092,8 @@ const string TupleHashJoinStep::toString() const
|
||||
{
|
||||
ostringstream oss;
|
||||
size_t idlsz = fInputJobStepAssociation.outSize();
|
||||
idbassert(idlsz > 1);
|
||||
// Avoid assertion on empty `TupleHashJoinStep`.
|
||||
idbassert(idlsz > 1 || idlsz == 0);
|
||||
oss << "TupleHashJoinStep ses:" << fSessionId << " st:" << fStepId;
|
||||
oss << omitOidInDL;
|
||||
|
||||
@ -1184,6 +1185,7 @@ void TupleHashJoinStep::configJoinKeyIndex(const vector<JoinType>& jt, const vec
|
||||
{
|
||||
joinTypes.insert(joinTypes.begin(), jt.begin(), jt.end());
|
||||
typelessJoin.insert(typelessJoin.begin(), typeless.begin(), typeless.end());
|
||||
|
||||
smallSideKeys.insert(smallSideKeys.begin(), smallkey.begin(), smallkey.end());
|
||||
largeSideKeys.insert(largeSideKeys.begin(), largekey.begin(), largekey.end());
|
||||
#ifdef JLF_DEBUG
|
||||
|
Reference in New Issue
Block a user