I'm currently exploring Deequ library and I'm trying to understand whether it's possible to check for the uniqueness of a combination of column.
This code
.hasUniqueness(Seq("col1", "col2"), Check.IsOne))
seems to calculate uniqueness for each column separately (correct if I'm wrong)
Thanks