fix binary column point selection

This commit is contained in:
dfsek
2022-01-08 11:10:21 -07:00
parent b99980e5c0
commit 03671ad209
@@ -107,7 +107,7 @@ public class BinaryColumn {
} }
if(that.data.length > index) { if(that.data.length > index) {
right = this.data[index]; right = that.data[index];
} }
next.data[index] = operator.apply(left, right); next.data[index] = operator.apply(left, right);
} }