You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Outer join of same non-unique indexes " in {
valix1=Index(0, 0)
valix2=Index(0, 0)
valres= ix1.join(ix2, how = index.OuterJoin)
/* Outer join two columns with repeated values should generate all possible pairs Correct assertions: res.index must_== Index(0, 0, 0, 0) res.lTake.get must_== Array(0, 0, 1, 1) res.rTake.get must_== Array(0, 1, 0, 1) However the current implementation has a shortcut for identical indexes and passes these:*/
res.index must_==Index(0, 0)
res.lTake must_==None
res.rTake must_==None
}
This is because in the implementation there is a shortcut:
This is because in the implementation there is a shortcut:
The above condition should check for uniqueness.
The text was updated successfully, but these errors were encountered: