- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support type casts in query typings #437
Comments
This used to work... Trying to track down the change but can't seem to find it... Pretty frustrating that you haven't even got a response on a breaking change like this... @codesnik any thoughts? |
The change should be in postgres-meta repo. @soedirgo do we need a new patch release for pgmeta? |
here is the PR: supabase/postgres-meta#559 I've been creating records and calling |
As mentioned in the PR, |
Converting this issue to supporting casts in query typings |
@ChuckJonas you probably wanted to mention someone else? |
@codesnik ya sorry! For some reason, when I typed |
@soedirgo do you have any idea why it actually still works to pass an array of numbers to the supabase client? I'm guessing maybe the supabase client calls It's fairly annoying to have to convert, when the results from any vector operation is always going to be an |
@steve-chavez does PostgREST convert the JSON array into |
@soedirgo No. All it does is pass the json body to |
OK, so it seems like some numeric types can be converted to As an alternative to casting, you can add create a computed column like so: alter table mytable add embedding_arr float4[] generated always as (embedding) stored; When you query that column it'll be typed as [0] from the |
Describe the bug
Embeddings type definition has been updated to
string
-- it is represented internally as avector
, and in code often as anumber[]
-- I thinknumber[]
would be a more apt definition of the type in typescript.The text was updated successfully, but these errors were encountered: