Python Client for Supabase. Query Postgres from Flask, Django, FastAPI. Python user authentication, security policies, edge functions, file storage, and realtime data streaming. Good first issue.
Describe the bug
Attempting to get a table of data using rpc in python fails
To Reproduce
Create a simple database function like below:
create or replace function add_planet(name text)
returns TABLE(INTERVAL_DATETIME timestamp, DUID text)
language plpgsql
as $$
begin
return query
select "INTERVAL_DATETIME", "DUID" from bidding_data limit 10;
end;
$$;
Describe the bug Attempting to get a table of data using rpc in python fails
To Reproduce
Create a simple database function like below:
Call function in python
Expected behavior Should return data.
Screenshots Calling the function works via the supabase sql editor
Desktop (please complete the following information):