in api-server/src/main/java/org/apache/cassandra/diff/api/services/DBService.java [450:470]
public JobResult(UUID jobId,
String table,
long matchedPartitions,
long mismatchedPartitions,
long matchedRows,
long matchedValues,
long mismatchedValues,
long onlyInSource,
long onlyInTarget,
long skippedPartitions) {
this.jobId = jobId;
this.table = table;
this.matchedPartitions = matchedPartitions;
this.mismatchedPartitions = mismatchedPartitions;
this.matchedRows = matchedRows;
this.matchedValues = matchedValues;
this.mismatchedValues = mismatchedValues;
this.onlyInSource = onlyInSource;
this.onlyInTarget = onlyInTarget;
this.skippedPartitions = skippedPartitions;
}