Uses of Class
org.apache.calcite.linq4j.CorrelateJoinType
-
Packages that use CorrelateJoinType Package Description org.apache.calcite.linq4j Language-integrated query for Java (linq4j) main package. -
-
Uses of CorrelateJoinType in org.apache.calcite.linq4j
Methods in org.apache.calcite.linq4j that return CorrelateJoinType Modifier and Type Method Description static CorrelateJoinTypeCorrelateJoinType. valueOf(String name)Returns the enum constant of this type with the specified name.static CorrelateJoinType[]CorrelateJoinType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.calcite.linq4j with parameters of type CorrelateJoinType Modifier and Type Method Description <TInner,TResult>
Enumerable<TResult>DefaultEnumerable. correlateJoin(CorrelateJoinType joinType, Function1<T,Enumerable<TInner>> inner, Function2<T,TInner,TResult> resultSelector)static <TSource,TInner,TResult>
Enumerable<TResult>EnumerableDefaults. correlateJoin(CorrelateJoinType joinType, Enumerable<TSource> outer, Function1<TSource,Enumerable<TInner>> inner, Function2<TSource,TInner,TResult> resultSelector)Returns elements ofouterfor which there is a member ofinnerwith a matching key.<TInner,TResult>
Enumerable<TResult>ExtendedEnumerable. correlateJoin(CorrelateJoinType joinType, Function1<TSource,Enumerable<TInner>> inner, Function2<TSource,TInner,TResult> resultSelector)For each row of the current enumerable returns the correlated rows from theinnerenumerable (nested loops join).
-