Handles the rebase from the trash changes

This commit is contained in:
stumpylog
2026-09-02 10:11:23 -07:00
parent 61397749b7
commit 2f440cade2
+1 -2
View File
@@ -149,8 +149,7 @@ def _build_where(
# too (e.g. an install with an enormous trash), not just IN.
PermittedIdsTable.load(conn, values)
clauses.append(
f"{f.key} {sql_op} "
f"(SELECT id FROM {PermittedIdsTable.TABLE_NAME})",
f"{f.key} {sql_op} (SELECT id FROM {PermittedIdsTable.TABLE_NAME})",
)
continue
placeholders = ",".join("?" for _ in values)