Skip to content

Commit

Permalink
Include merge fingerprints in output
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed May 4, 2024
1 parent 49cd1eb commit e4b6c90
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/python/select_from_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ def columns_in_query(query):
result.remove("and")
while "or" in result:
result.remove("or")
return result
with_fingerprints = [x for col in result for x in [col, col + "_merge_fingerprint"]]
return with_fingerprints


# Testing:
Expand Down

0 comments on commit e4b6c90

Please sign in to comment.