Constructor accepts a child operator to read tuples to apply projection to and a list of fields in output tuple @param fieldList The ids of the fields child's tupleDesc to project out @param typesList the types of the fields in the final projection @param child The child operator
(List<Integer> fieldList, List<Type> typesList,
OpIterator child)
| 27 | * @param child The child operator |
| 28 | */ |
| 29 | public Project(List<Integer> fieldList, List<Type> typesList, |
| 30 | OpIterator child) { |
| 31 | this(fieldList, typesList.toArray(new Type[]{}), child); |
| 32 | } |
| 33 | |
| 34 | public Project(List<Integer> fieldList, Type[] types, |
| 35 | OpIterator child) { |
nothing calls this directly
no test coverage detected