Re: [GENERAL] CREATE VIEW blah AS SELECT DISTINCT etc

From: Bob Kline <bkline(at)rksystems(dot)com>
To: Moray McConnachie <moray(dot)mcconnachie(at)computing-services(dot)oxford(dot)ac(dot)uk>
Cc: pgsql-general(at)postgreSQL(dot)org
Subject: Re: [GENERAL] CREATE VIEW blah AS SELECT DISTINCT etc
Date: 1999-10-22 12:49:41
Message-ID: Pine.LNX.4.10.9910220847050.26822-100000@rksystems.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Fri, 22 Oct 1999, Moray McConnachie wrote:

> I don't see implement SELECT DISTINCT in views on the To Do list?
>
> I'm using 6.5.2, and on doing
> CREATE VIEW blahview AS SELECT DISTINCT bleurgh,blaagh FROM blah;
>
> I get
> ERROR: DISTINCT not supported in views.
>
> However, the \h command in psql gives
> CREATE VIEW view_name AS
> SELECT [DISTINCT [ON attrN]]
> etc.
>
> I can't find the bug report form on the WWW to submit a bug report for
> psql on this. The FAQ merely says
>
> 1.13) How do I submit a bug report?
>
> Fill out the "bug-template" file and send it to: bugs(at)postgreSQL(dot)org
>
> No indication of how to get hold of the bug-template file...
>

$ locate bug.template
/usr/doc/postgresql-6.5.2/bug.template
/usr/src/pgsql/postgresql-6.5/doc/bug.template

So it looks like the doc directory of your source distribution tree
might be a good place to start looking. Or just do a find / -name
bug.template -print.

--
Bob Kline
mailto:bkline(at)rksystems(dot)com
http://www.rksystems.com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Moray McConnachie 1999-10-22 13:54:34 Re: [GENERAL] CREATE VIEW blah AS SELECT DISTINCT etc
Previous Message Moray McConnachie 1999-10-22 09:13:50 CREATE VIEW blah AS SELECT DISTINCT etc