Description
At JoinSelection, with ExtractEquiJoinKeys, we use `nonEquiCond` as the join condition. It's wrong since there should exist some equi condition.
Seq(joins.BroadcastNestedLoopJoinExec( planLater(left), planLater(right), buildSide, joinType, nonEquiCond))
But it's should not be a bug, since we always use the smj as the default join strategy for ExtractEquiJoinKeys.