in spark-job/src/main/java/org/apache/cassandra/diff/RangeStats.java [45:64]
public static RangeStats withValues(long matchedPartitions,
long mismatchedPartitions,
long errorPartitions,
long skippedPartitions,
long onlyInSource,
long onlyInTarget,
long matchedRows,
long matchedValues,
long mismatchedValues) {
return new RangeStats(matchedPartitions,
mismatchedPartitions,
errorPartitions,
skippedPartitions,
onlyInSource,
onlyInTarget,
matchedRows,
matchedValues,
mismatchedValues);
}