JoinKind Enum

Definition

Describes the kind of join used in a particular join query plan node.

public enum JoinKind
type JoinKind = 
Public Enum JoinKind
Inheritance
JoinKind

Fields

Clip 0

A clip operation, joining two streams relative to their respective intervals.

EquiJoin 1

An equijoin between two stream.

IncreasingOrderEquiJoin 3

An equijoin where both streams are guaranteed to only contain start edges and use the same key comparer.

LeftAntiSemiJoin 4

A left antisemijoin operation (i.e., a "where not exists" operation).

StartEdgeEquijoin 2

An equijoin where both streams are guaranteed to only contain start edges.

Applies to