Skip to content

Commit

Permalink
Fixed CORE-4809: HASH/MERGE JOIN is not used for more than two stream…
Browse files Browse the repository at this point in the history
…s if they are joined via USING/NATURAL clauses and join is based on DBKEY concatenations.
  • Loading branch information
dyemanov committed May 31, 2015
1 parent 6db7526 commit cb6ddcd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/common/dsc.h
Expand Up @@ -182,6 +182,9 @@ typedef struct dsc
return CS_BINARY;
}

if (isDbKey())
return CS_BINARY;

return CS_NONE;
}

Expand All @@ -198,6 +201,9 @@ typedef struct dsc
return CS_BINARY;
}

if (isDbKey())
return CS_BINARY;

return CS_NONE;
}

Expand Down

0 comments on commit cb6ddcd

Please sign in to comment.