We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa65d80 commit aedd7ddCopy full SHA for aedd7dd
core/src/main/java/tech/tablesaw/api/Table.java
@@ -758,10 +758,7 @@ public Table where(Selection selection) {
758
}
759
760
public Table where(Function<Table, Selection> selection) {
761
- Table tempTable = where(selection.apply(this));
762
- Table newTable = tempTable.emptyCopy(tempTable.rowCount());
763
- Rows.copyRowsToTable(selection.apply(this), this, newTable);
764
- return newTable;
+ return where(selection.apply(this));
765
766
767
public Table dropWhere(Function<Table, Selection> selection) {
0 commit comments