From e4b6c9076e5de1e61770e354a19964ccdd25d5c5 Mon Sep 17 00:00:00 2001 From: Michael Ernst Date: Sat, 4 May 2024 08:24:00 -0700 Subject: [PATCH] Include merge fingerprints in output --- src/python/select_from_results.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/python/select_from_results.py b/src/python/select_from_results.py index f8cf50225b..beb838d9ae 100755 --- a/src/python/select_from_results.py +++ b/src/python/select_from_results.py @@ -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: