Re: [BUGS] create table permissions bug for 7.3.2

2003-03-13 Thread Evgeny Duzhakow
On Thu, 13 Mar 2003, Tom Lane wrote: TL>regression=# create user z; TL>CREATE USER TL>regression=# create schema s; TL>CREATE SCHEMA TL>regression=# \c - z TL>You are now connected as new user z. TL>regression=> create table s.t (f1 int); TL>ERROR: s: permission denied TL>regression=> TL>I'm not

[BUGS] create table permissions bug for 7.3.2

2003-03-12 Thread Evgeny Duzhakow
I have found a bug in version 7.3.2. At creation of tables the user not having grants on it can create the table in database. (For temporary tables all works normally). I have written small patch, it can be incorrect, but it works for me. see atach Diabolo. ---