mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-25 00:36:56 +02:00
gha: windows dont typedef, fix linux eqp
This commit is contained in:
parent
df4d629891
commit
0f08b94dbd
2 changed files with 5 additions and 3 deletions
|
|
@ -616,15 +616,15 @@ def test_smoke():
|
|||
explain_query_plan(
|
||||
"select * from vec_xyz where a match X'' and k = 10 order by distance"
|
||||
)
|
||||
== "SCAN vec_xyz VIRTUAL TABLE INDEX 0:knn:"
|
||||
== "SCAN (TABLE )?vec_xyz VIRTUAL TABLE INDEX 0:knn:"
|
||||
)
|
||||
assert (
|
||||
explain_query_plan("select * from vec_xyz")
|
||||
== "SCAN vec_xyz VIRTUAL TABLE INDEX 0:fullscan"
|
||||
== "SCAN (TABLE )?vec_xyz VIRTUAL TABLE INDEX 0:fullscan"
|
||||
)
|
||||
assert (
|
||||
explain_query_plan("select * from vec_xyz where rowid = 4")
|
||||
== "SCAN vec_xyz VIRTUAL TABLE INDEX 3:point"
|
||||
== "SCAN (TABLE )?vec_xyz VIRTUAL TABLE INDEX 3:point"
|
||||
)
|
||||
|
||||
db.execute("insert into vec_xyz(rowid, a) select 1, X'000000000000803f'")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue