Re: Server Crash wit insert ... select ... group by

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Ramin Motakef <ramin(at)motakef(dot)de>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: Server Crash wit insert ... select ... group by
Date: 2001-03-19 00:03:48
Message-ID: 27724.984960228@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Ramin Motakef <ramin(at)motakef(dot)de> writes:
> The Following query causes the backend to crash:

> INSERT INTO bmonth (year,month,hours)
> SELECT date_part('year',day),
> date_part('month',day),
> to_hour(sum(stop-start))
> FROM stunden
> GROUP BY date_part('year',day), date_part('month',day);

This is fixed in 7.1.

regards, tom lane

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Julian Richardson 2001-03-19 09:31:37 7.03 JDBC drivers & large objects
Previous Message Ramin Motakef 2001-03-18 12:46:05 Server Crash wit insert ... select ... group by