Skip to content

Commit 42462e5

Browse files
committed
Removed check for unsupported types.
1 parent 23622ee commit 42462e5

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/sqlite-vector.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1899,11 +1899,6 @@ static void vector_init (sqlite3_context *context, int argc, sqlite3_value **arg
18991899
return;
19001900
}
19011901

1902-
if ((options.v_type == VECTOR_TYPE_F16) || (options.v_type == VECTOR_TYPE_BF16)) {
1903-
context_result_error(context, SQLITE_ERROR, "FLOAT16 and FLOATB16 vector types are currently under development. Please update to the latest version.");
1904-
return;
1905-
}
1906-
19071902
// check if table is already loaded
19081903
vector_context *v_ctx = (vector_context *)sqlite3_user_data(context);
19091904
table_context *t_ctx = vector_context_lookup(v_ctx, table_name, column_name);

src/sqlite-vector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
extern "C" {
2525
#endif
2626

27-
#define SQLITE_VECTOR_VERSION "0.9.5"
27+
#define SQLITE_VECTOR_VERSION "0.9.6"
2828

2929
SQLITE_VECTOR_API int sqlite3_vector_init (sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi);
3030

0 commit comments

Comments
 (0)