MCPcopy Create free account
hub / github.com/bytedance/bolt / needsProbeMismatch

Function needsProbeMismatch

bolt/exec/NestedLoopJoinProbe.cpp:40–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38namespace {
39
40bool needsProbeMismatch(core::JoinType joinType) {
41 return isLeftJoin(joinType) || isFullJoin(joinType) ||
42 isLeftSemiProjectJoin(joinType);
43}
44
45bool needsBuildMismatch(core::JoinType joinType) {
46 return isRightJoin(joinType) || isFullJoin(joinType);

Callers 2

addToOutputMethod · 0.85
checkProbeMismatchRowMethod · 0.85

Calls 3

isLeftJoinFunction · 0.85
isFullJoinFunction · 0.85
isLeftSemiProjectJoinFunction · 0.85

Tested by

no test coverage detected