Re: [BUGS] General Bug Report: backend closes with aggregate functions on views - Mailing list pgsql-bugs

From Bruce Momjian
Subject Re: [BUGS] General Bug Report: backend closes with aggregate functions on views
Date
Msg-id 199903171615.LAA10094@candle.pha.pa.us
Whole thread Raw
In response to General Bug Report: backend closes with aggregate functions on views  (Unprivileged user <nobody>)
List pgsql-bugs
> It seems the pg backend disconnects a connection when a user
> performs an aggregate function on a view. In one instance, doing
> so killed the backend.  I can't seem to duplicate killing the
> backend, but is this proper behavior for the backend?
>
> --------------------------------------------------------------------------
>
> Test Case:  ---------- create table a (b char(20) not null, c
> char(10) not null, d int, primary key (b, c)); create view d as
> select b,sum(d) from a group by b; select max(sum) from d;

This is a know problem.  It is on the TODO list.

--
  Bruce Momjian                        |  http://www.op.net/~candle
  maillist@candle.pha.pa.us            |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026

pgsql-bugs by date:

Previous
From: Unprivileged user
Date:
Subject: General Bug Report: backend closes with aggregate functions on views
Next
From: Unprivileged user
Date:
Subject: General Bug Report: Bug in optimizer