Closed
Description
Bug report
- I confirm this is a bug with Supabase, not with my own application.
- I confirm I have searched the Docs, GitHub Discussions, and Discord.
Describe the bug
The docs say the columns
parameter of select()
"defaults to *
." It does not.
To Reproduce
- Run
supabase.table("t").select("*")
, and get everything int
. - Run
supabase.table("t").select("")
, and get everything int
. - Run
supabase.table("t").select()
, and get no data.
Expected behavior
supabase.table("t").select()
should get everything in t
. I understand "defaults to *
" to mean *
is the default argument.