On Sun, 2002-12-01 at 16:35, [EMAIL PROTECTED] wrote:
> alter user nobody set search_path to [something]
> 
> and then
> 
> alter user nobody set search_path to default
> 
> (having already done this for my own username).
> 
> The database server immediately crashes

Works for me:

template1=# select version(); 
                            version                             
----------------------------------------------------------------
 PostgreSQL 7.3rc2 on i686-pc-linux-gnu, compiled by GCC 2.95.4
(1 row)

template1=# create user nobody;
CREATE USER
template1=# create schema a;
CREATE SCHEMA
template1=# alter user nobody set search_path to 'a';
ALTER USER
template1=# alter user nobody set search_path to default;
ALTER USER
template1=#

Cheers,

Neil
-- 
Neil Conway <[EMAIL PROTECTED]> || PGP Key ID: DB3C29FC




---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly

Reply via email to