deduper / org.bradfordmiller.deduper / DedupeReport

DedupeReport

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.

Constructors

<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>>)

Properties

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

Functions

toString

fun toString(): String