[PATCHES] default tablespace for roles

2005-08-06 Thread Laszlo Hornyak
Hi! It would be nice to have tablespaces for each users. This is a small pathc that does the job. - gramar file: alter|create user ... with default tablespace 'tblspc' added; - new column in pg_authid: roltblspc, an Oid referring to the pg_tablespace - at alter/add role neccessary default

Re: [PATCHES] default tablespace for roles

2005-08-06 Thread Tom Lane
Laszlo Hornyak [EMAIL PROTECTED] writes: It would be nice to have tablespaces for each users. This is a small pathc that does the job. Isn't this entirely redundant with the existing default_tablespace GUC variable, ie, ALTER USER foo SET default_tablespace = whatever; The patch's behavior