in src/main/java/org/apache/flink/benchmark/thrift/MyPojo.java [658:682]
public int hashCode() {
int hashCode = 1;
hashCode = hashCode * 8191 + id;
hashCode = hashCode * 8191 + ((isSetName()) ? 131071 : 524287);
if (isSetName()) hashCode = hashCode * 8191 + name.hashCode();
hashCode = hashCode * 8191 + ((isSetOperationName()) ? 131071 : 524287);
if (isSetOperationName()) hashCode = hashCode * 8191 + operationName.hashCode();
hashCode = hashCode * 8191 + ((isSetOperations()) ? 131071 : 524287);
if (isSetOperations()) hashCode = hashCode * 8191 + operations.hashCode();
hashCode = hashCode * 8191 + otherId1;
hashCode = hashCode * 8191 + otherId2;
hashCode = hashCode * 8191 + otherId3;
hashCode = hashCode * 8191 + ((isSetSomeObject()) ? 131071 : 524287);
if (isSetSomeObject()) hashCode = hashCode * 8191 + someObject.hashCode();
return hashCode;
}