fullJoin

inline fun <L, R> Dataset<L>.fullJoin(right: Dataset<R>, col: Column): Dataset<Tuple2<L?, R?>>

Alias for Dataset.joinWith which passes "full" argument and respects the fact that in result of join any element of resulting tuple is nullable

Receiver

left dataset

Return

dataset of Tuple2 where both elements are forced nullable

Parameters

right

right dataset

col

join condition