Marcus England wrote:
Grants do not work at the database level using the syntax mentioned in
the documentation. i.e.:
GRANT ALL ON DATABASE dbname TO GROUP groupname;
Or
GRANT ALL ON DATABASE dbname TO username;
Works here:
regression=# select version();
version
---
===
POSTGRESQL BUG REPORT TEMPLATE
Your
name
: Marcus England
Your email address : [EMAIL
Yes, agreed
Dave
On Sun, 2003-08-17 at 09:57, Palle Girgensohn wrote:
> It's been in use for the freebsd port for some months now, so I say
> yes. ;-)
>
> /Palle
>
> lördagen den 16 augusti 2003 kl 22.54 skrev Bruce Momjian:
>
> >
> > Is this patch valid for inclusion in jdbc?
> >
> > ---
It's been in use for the freebsd port for some months now, so I say
yes. ;-)
/Palle
lördagen den 16 augusti 2003 kl 22.54 skrev Bruce Momjian:
Is this patch valid for inclusion in jdbc?
---
[EMAIL PROTECTED] wrote:
Pal
Kevin Houle <[EMAIL PROTECTED]> writes:
>> One more data point. The DBD::Pg 'lo_extract' function works
>> fine across SSL. There is no issue with large objects >= 32K
>> using 'lo_extract'. So that casts doubt on it being an OpenSSL
>> issue.
No, it does not, because lo_export writes the data to
From: "Tom Lane" <[EMAIL PROTECTED]> wrote:
> Bruce Momjian <[EMAIL PROTECTED]> writes:
> > Tom Lane wrote:
> >> There's a date + integer operator, but no integer + date operator.
> >> Yawn...
>
> > Uh, "Yawn" means we don't need to fix it, or "oh, here's another one"?
>
> It means "I can't get exc
On Sun, 17 Aug 2003, Bruce Momjian wrote:
> Anyone have an idea on this one?
>
> > It is maybe not bug, but I didn't find any warning about this behavior.
> >
> > select current_date + 1; -- ok
> > select 1 + current_date; -- not
> >
> > ERROR: operator does not exist: integer + date
> > HIN