Re: search_path update weirdness

From: Colin S <colin_sloss(at)hotmail(dot)com>
To: Szymon Guz <mabewlun(at)gmail(dot)com>
Cc: "pgsql-admin(at)postgresql(dot)org" <pgsql-admin(at)postgresql(dot)org>
Subject: Re: search_path update weirdness
Date: 2013-07-08 12:57:16
Message-ID: DUB118-W16CF16A57EE2DBAE40981987780@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Date: Mon, 8 Jul 2013 14:46:29 +0200
Subject: Re: [ADMIN] search_path update weirdness
From: mabewlun(at)gmail(dot)com
To: colin_sloss(at)hotmail(dot)com
CC: pgsql-admin(at)postgresql(dot)org

Hi szymon,
My mistake. I chock it up to another manic monday.
Thanks!
Colin

On 8 July 2013 14:40, Colin S <colin_sloss(at)hotmail(dot)com> wrote:

Hello,
I made a bad update to search_path, which basically had line returns:
prod_candidate=# alter user postgres set search_path to 'search_path=public, schem
prod_candidate'# a1, schema2, schema3'prod_candidate-# ;ALTER ROLE

And now, I can't get it to insert correctly again, there always seems to be some backslashes stuck in there:

prod_candidate=# alter user postgres set search_path to '';ALTER ROLEprod_candidate=# select usename, useconfig from pg_user; usename | useconfig
----------------+-------------------------------------------- postgres | {"search_path=\"\""} user2 | {"search_path=public, schema1, schema2, schema3"}
user3 | {"search_path=public, schema1, schema2, schema3"}(3 rows)
prod_candidate=# alter user postgres set search_path to 'operator, gameplay, common';
ALTER ROLEprod_candidate=# select usename, useconfig from pg_user; usename | useconfig ----------------+------------------------------------------------
postgres | {"search_path=\"public, schema1, schema2, schema3\""} user2 | {"search_path=public, schema1, schema2, schema3"} user3 | {"search_path=public, schema1, schema2, schema3"}
(3 rows)
Regards,
Colin

Hi Colin,you should rather set the path with:
alter user postgres set search_path = public, schema1, schema2, schema3;

szymon

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Jerry Sievers 2013-07-08 19:20:44 Dump/Reload pg_statistic to cut time from pg_upgrade?
Previous Message Szymon Guz 2013-07-08 12:46:29 Re: search_path update weirdness