Re: problem with ALTER GROUP

From: Thomas Lockhart <lockhart(at)alumni(dot)caltech(dot)edu>
To: Kovacs Zoltan Sandor <tip(at)pc10(dot)radnoti-szeged(dot)sulinet(dot)hu>
Cc: Peter Eisentraut <peter_e(at)gmx(dot)net>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: problem with ALTER GROUP
Date: 2000-06-23 14:10:01
Message-ID: 39536FB9.2E6C14CC@alumni.caltech.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> > > test=# ALTER GROUP anygroup ADD USER 1234;
> > > ERROR: parser: parse error at or near "1234"
> > Try ... USER "1234" (double quotes).
> Unfortunetely it also doesn't work.

lockhart=# create user "1234";
CREATE USER
lockhart=# create group test;
CREATE GROUP
lockhart=# ALTER GROUP test ADD USER 1234;
ERROR: parser: parse error at or near "1234"
lockhart=# ALTER GROUP test ADD USER "1234";
ALTER GROUP

What does "not work" mean? Is the result unusable?

- Thomas

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2000-06-23 16:04:00 Re: Interesting mention of PostgreSQL in news
Previous Message Lamar Owen 2000-06-23 14:07:50 Re: Interesting mention of PostgreSQL in news