We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70ec2a6 commit 0921dc3Copy full SHA for 0921dc3
src/datajudge/requirements.py
@@ -1807,8 +1807,12 @@ def add_row_matching_equality_constraint(
1807
Alternatively, this can be thought of as counting mismatches in
1808
``comparison_columns`` after performing an inner join on ``matching_columns``.
1809
"""
1810
- ref = DataReference(self.data_source, None, condition1)
1811
- ref2 = DataReference(self.data_source2, None, condition2)
+ ref = DataReference(
+ self.data_source, matching_columns1 + comparison_columns1, condition1
1812
+ )
1813
+ ref2 = DataReference(
1814
+ self.data_source2, matching_columns2 + comparison_columns2, condition2
1815
1816
self._constraints.append(
1817
row_constraints.RowMatchingEquality(
1818
ref,
0 commit comments