(SchemaTuple<?> t, boolean checkType)
| 92 | } |
| 93 | |
| 94 | protected SchemaTuple<T> set(SchemaTuple<?> t, boolean checkType) throws ExecException { |
| 95 | resetAppendedFields(); |
| 96 | for (int j = schemaSize(); j < t.size(); j++) { |
| 97 | append(t.get(j)); |
| 98 | } |
| 99 | return super.set(t, checkType); |
| 100 | } |
| 101 | |
| 102 | protected SchemaTuple<T> setSpecific(T t) { |
| 103 | resetAppendedFields(); |
nothing calls this directly
no test coverage detected