Re: [GENERAL] Setting search_path ignored - Mailing list pgsql-general

From David G. Johnston
Subject Re: [GENERAL] Setting search_path ignored
Date
Msg-id CAKFQuwYS6B=s9PTW97PvteZo8nof8kzWW_AdtrWyht7y=GovHA@mail.gmail.com
Whole thread Raw
In response to [GENERAL] Setting search_path ignored  (Guyren Howe <guyren@gmail.com>)
Responses Re: [GENERAL] Setting search_path ignored  (Guyren Howe <guyren@gmail.com>)
List pgsql-general
On Mon, Oct 2, 2017 at 7:00 AM, Guyren Howe <guyren@gmail.com> wrote:

CREATE ROLE thing_accessor;

CREATE ROLE

CREATE SCHEMA thing_accessor;

CREATE SCHEMA

covermything=> ALTER ROLE thing_accessor SET search_path=thing_accessor;

ALTER ROLE

covermything=# SET ROLE thing_accessor;

SET

covermything=> SHOW search_path;

   search_path   

-----------------

 "$user", public

(1 row)

 

This seems to contradict all the advice I can find about setting the schema search path.


​Settings associated with roles only take affect at session start/login.   SET ROLE does not cause them to be read/executed.


"Values set with ALTER DATABASE and ALTER ROLE are applied only when starting a fresh database session."

David J.

pgsql-general by date:

Previous
From: Melvin Davidson
Date:
Subject: Re: [GENERAL] time series data
Next
From: Guyren Howe
Date:
Subject: Re: [GENERAL] Setting search_path ignored