Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
String actualKey= input_row.keyPart1 + "###A DELIMITER###" + input_row.keyPart2;
if (context.lastKey == null || ! context.lastKey.equals(actualKey)) {
output_row.filterThisRow= false;
} else {
output_row.filterThisRow= true;
}
context.lastKey= actualKey;