Re: Bug list? - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Bug list?
Date
Msg-id 29217.963165460@sss.pgh.pa.us
Whole thread Raw
In response to Bug list?  (Philip Warner <pjw@rhyme.com.au>)
Responses Re: Bug list?
List pgsql-hackers
Philip Warner <pjw@rhyme.com.au> writes:
> Is there an official bug list?

There's the TODO list, but things usually only get on there if they're
not going to be fixed quickly.  Active discussion threads in pghackers
don't normally get reflected into TODO ...

> 1. Temp tables preventing permanent table creation:

Not a bug IMHO, since temp tables mask permanent tables.  Drop
or rename the temp table if you want to make a permanent table.

> update t1 set f2=count(*) from t2 where t1.f1=2 and t2.f1=t1.f1 ;
> ERROR:  ExecutePlan: (junk) `ctid' is NULL!

This is a bug, but it's not clear what the behavior should be; maybe
the bug is accepting an ill-defined command in the first place.  See
"MAX() of 0 records" thread nearby.
        regards, tom lane


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: [BUGS] Unnexpected results using to_number()
Next
From: Tom Lane
Date:
Subject: Re: [SQL] MAX() of 0 records.