You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now various vector functions fail when encountering a vector column with spaces in its name.
For example:
CREATE INDEX 'title embed idx' ON movies (libsql_vector_idx('title embed'));
SELECT title,
vector_extract('title embed'),
vector_distance_cos('title embed', vector16('[0.064, 0.777, 0.661]'))
FROM movies
ORDER BY
vector_distance_cos('title embed', vector16('[0.064, 0.777, 0.661]'))
ASC;
In these examples, libsql_vector_idx, vector_extract, and vector_distance_cos all fail.
It would be great if space is accepted.
The text was updated successfully, but these errors were encountered:
Right now various vector functions fail when encountering a vector column with spaces in its name.
For example:
In these examples,
libsql_vector_idx
,vector_extract
, andvector_distance_cos
all fail.It would be great if space is accepted.
The text was updated successfully, but these errors were encountered: