gha: more linxu + windows fix attempts

This commit is contained in:
Alex Garcia 2024-04-20 16:04:08 -07:00
parent 1b3731b2bb
commit df4d629891
2 changed files with 3 additions and 8 deletions

View file

@ -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

View file

@ -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:"
)