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
select name, embedding
from galaxies
order by vector_distance(embedding, vector('[0,1,1,0,0]', 5, int8), dot)
fetch approx first 3 rows only
with target accuracy 80 percent;
The reason is the new row_limiting_clause introduced in 23.4 to allow similarity searches. Changes in this clause are not covered by the underlying parser.
The text was updated successfully, but these errors were encountered:
The following query causes a parser error:
The reason is the new row_limiting_clause introduced in 23.4 to allow similarity searches. Changes in this clause are not covered by the underlying parser.
The text was updated successfully, but these errors were encountered: