Skip to content

Commit

Permalink
gha: more linxu + windows fix attempts
Browse files Browse the repository at this point in the history
  • Loading branch information
asg017 committed Apr 20, 2024
1 parent 1b3731b commit df4d629
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 2 additions & 7 deletions sqlite-vec.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,13 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <stdint.h>
#include <inttypes.h>
#include "sqlite-vec.h"

#include "sqlite3ext.h"
SQLITE_EXTENSION_INIT1

#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif

#ifndef UINT32_TYPE
# ifdef HAVE_UINT32_T
Expand Down
2 changes: 1 addition & 1 deletion tests/test-loadable.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ def test_smoke():

assert (
explain_query_plan(
"select * from vec_xyz where a match X'' order by distance limit 10"
"select * from vec_xyz where a match X'' and k = 10 order by distance"
)
== "SCAN vec_xyz VIRTUAL TABLE INDEX 0:knn:"
)
Expand Down

0 comments on commit df4d629

Please sign in to comment.