(boolean isNull, int val, SchemaTuple<?> t, int pos)
| 1019 | } |
| 1020 | |
| 1021 | protected int compareWithElementAtPos(boolean isNull, int val, SchemaTuple<?> t, int pos) { |
| 1022 | int themVal; |
| 1023 | boolean themNull; |
| 1024 | try { |
| 1025 | themVal = t.getInt(pos); |
| 1026 | themNull = t.isNull(pos); |
| 1027 | } catch (ExecException e) { |
| 1028 | throw new RuntimeException("Unable to retrieve int field " + pos + " in given Tuple: " + t, e); |
| 1029 | } |
| 1030 | return compare(isNull, val, themNull, themVal); |
| 1031 | } |
| 1032 | |
| 1033 | protected int compare(boolean usNull, long usVal, boolean themNull, long themVal) { |
| 1034 | if (usNull && themNull) { |
nothing calls this directly
no test coverage detected