Re: Trying to GRANT privileges on a newly-created database

From: Josh Berkus <josh(at)agliodbs(dot)com>
To: pgsql-testers(at)postgresql(dot)org
Subject: Re: Trying to GRANT privileges on a newly-created database
Date: 2010-05-03 02:00:33
Message-ID: 4BDE2E41.5090505@agliodbs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-testers

On 05/02/2010 03:59 PM, Lou Picciano wrote:
>
>
> *[TEST REPORT]*
>
> *[Release]:* 8.5alpha2
>
> *[Test Type]:* psql CLI
>
> *[Test]:* Trying to GRANT privileges on a newly-created database
>
> *[Platform]:* Solaris SPARC 4u (E450)
>
> *[Parameters]:* Trying to GRANT privileges on a newly-created database.
> db name in lower case.
>
> *[Failure]: yes*
>
> *[Results]:*
>
> # CREATE DATABASE dbname;
>
> # GRANT ALL ON dbname TO role;
>
> ERROR: relatioypn "dbname" does not exist
>
> Please note this database is created in lower case; it has not been
> renamed from upper.
>
> # GRANT ALL ON dbname TO role; - produces the same error.

In general, to do a grant on anything other that a table you need to
name the object type, i.e.

GRANT ALL ON DATABASE dbname TO role;

That's been true for quite a while.

--
-- Josh Berkus
PostgreSQL Experts Inc.
http://www.pgexperts.com

In response to

Browse pgsql-testers by date

  From Date Subject
Next Message Adam Rauch 2010-05-04 17:39:40 [TEST REPORT] JDBC reports invalid primary key meta data after PK column rename
Previous Message Lou Picciano 2010-05-02 22:59:35 Trying to GRANT privileges on a newly-created database