create schema bla;
-- then create table table_name into this schema
Then I want change default schema for user (user is postgres
)
I do: ALTER ROLE postgres SET search_path TO bla;
(Query returned successfully with no result).
When I try SELECT * FROM table_name
gives error relation "table_name" does not exist
Though SELECT * FROM bla.table_name
works fine.
What is wrong in my attempt to change default schema for user?