(List<Column> columnExpr, Expression filter)
| 177 | } |
| 178 | |
| 179 | @Override |
| 180 | public DDF subset(List<Column> columnExpr, Expression filter) throws DDFException { |
| 181 | DDF subset = _subset(columnExpr, filter); |
| 182 | subset.getMetaDataHandler().copyFactor(this.getDDF(), this.getDDF().getColumnNames()); |
| 183 | return subset; |
| 184 | |
| 185 | } |
| 186 | |
| 187 | protected DDF _subset(List<Column> columnExpr, Expression filter) throws DDFException { |
| 188 | updateVectorName(filter, this.getDDF()); |
nothing calls this directly
no test coverage detected