data class DedupeReport
summary of a dedupe operation, with total recordCount, hashColumns used, columnsFound in the actual source query, dupeCount, distinctDupeCount, and dupes found in the dedupe process.
<init> |
summary of a dedupe operation, with total recordCount, hashColumns used, columnsFound in the actual source query, dupeCount, distinctDupeCount, and dupes found in the dedupe process. DedupeReport(recordCount: Long, hashColumns: Set<String>, columnsFound: Set<String>, dupeCount: Long, distinctDupeCount: Long, hashCount: Long, dupes: MutableMap<String, Pair<MutableList<Long>, Dupe>>) |
columnsFound |
val columnsFound: Set<String> |
distinctDupeCount |
val distinctDupeCount: Long |
dupeCount |
val dupeCount: Long |
dupes |
var dupes: MutableMap<String, Pair<MutableList<Long>, Dupe>> |
hashColumns |
val hashColumns: Set<String> |
hashCount |
val hashCount: Long |
recordCount |
val recordCount: Long |
toString |
fun toString(): String |