(int val, SchemaTuple<?> t, int pos)
| 994 | } |
| 995 | |
| 996 | protected int compareElementAtPos(int val, SchemaTuple<?> t, int pos) { |
| 997 | int themVal; |
| 998 | try { |
| 999 | themVal = t.getInt(pos); |
| 1000 | } catch (ExecException e) { |
| 1001 | throw new RuntimeException("Unable to retrieve int field " + pos + " in given Tuple: " + t, e); |
| 1002 | } |
| 1003 | return compare(val, themVal); |
| 1004 | } |
| 1005 | |
| 1006 | protected int compare(boolean usNull, int usVal, boolean themNull, int themVal) { |
| 1007 | if (usNull && themNull) { |