drop not-used in eqp

This commit is contained in:
Alex Garcia 2024-11-14 11:42:37 -08:00
parent c4ece98705
commit ab1f6f2c99
2 changed files with 3 additions and 16 deletions

View file

@ -233,6 +233,9 @@ def eqp(db, sql):
o["plan"] = [
dict(row) for row in db.execute(f"explain query plan {sql}").fetchall()
]
for p in o["plan"]:
# value is different on macos-aarch64 in github actions, not sure why
del p["notused"]
return o