I just created a new user that I want to have access to a limited number of our public tables. The user is created and I granted privs to one public table for now. I then lo
Note for others who may see this, though it may not apply to this particular question --
If you are not using the public schema, you need to update the search_path
SET search_path TO my_schema, public;
Credit: Why does PostgreSQL's \dt show only public schema tables?