Stripe Wrapper: selecting attrs
field and using a where clause filters out rows
#57
Labels
bug
Something isn't working
Bug report
Describe the bug
If a query to a stripe foreign table selects the
attrs
field and uses a WHERE clause, then no rows will be returned, unless all columns used in the WHERE clause are also selected.To Reproduce
supabase init; supabase db start
)docker exec -it supabase_db_foo psql -U postgres
)attrs
with and without including columns used in a where clauseSome example queries and the results (with added explanatory headers):
Expected behavior
I'd expect that
select attrs from stripe.customers where id = 'foo'
would return a row if there existed a row withid = 'foo'
, rather than needing to doselect id, attrs from stripe.customers where id = 'foo'
in order to return a row.System information
The text was updated successfully, but these errors were encountered: