I have been trying to find out what is the difference between using:
left.join(right, left.col("C_ClientID") === right.col("A_ClientID"), "left_outer")
and
left.join(right, left.col("C_ClientID") <=> right.col("A_ClientID"), "left_outer")
But I'm having a hard time finding any information on <=>
anyone on Stack know the answer?