This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Description
Bug report
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 in t.
- Run
supabase.table("t").select(""), and get everything in t.
- 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.