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 ccdf54b commit 440c43bCopy full SHA for 440c43b
data_diff/format.py
@@ -60,7 +60,7 @@ def jsonify(
60
t1_exclusive_rows, t2_exclusive_rows, diff_rows = _group_rows(diff_info, schema)
61
62
if not stats_only:
63
- rows = _make_rows_diff(t1_exclusive_rows, t2_exclusive_rows, diff_rows)
+ rows = _make_rows_diff(t1_exclusive_rows, t2_exclusive_rows, diff_rows, key_columns)
64
65
summary = None
66
if with_summary:
@@ -252,7 +252,8 @@ def _group_rows(
252
def _make_rows_diff(
253
t1_exclusive_rows: List[Dict[str, Any]],
254
t2_exclusive_rows: List[Dict[str, Any]],
255
- diff_rows: List[Dict[str, Any]]
+ diff_rows: List[Dict[str, Any]],
256
+ key_columns: List[str],
257
) -> RowsDiff:
258
diff_rows_jsonified = []
259
for row in diff_rows:
0 commit comments