mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-26 09:16:22 +02:00
drop not-used in eqp
This commit is contained in:
parent
c4ece98705
commit
ab1f6f2c99
2 changed files with 3 additions and 16 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue