On Friday 18 March 2005 18:08, Bruce Momjian wrote:
> Uh, have you read the FAQ item about plpgsql and temporary tables?
Doesn't seems like, eh? ;-)
...sorry for the not rtfm.
---(end of broadcast)---
TIP 9: the planner will ignore your desire to c
Uh, have you read the FAQ item about plpgsql and temporary tables?
---
Oliver Siegmar wrote:
> Hello,
>
> I've probably found a temp table bug in PostgreSQL (tested with 7.4.7 and
> 8.0.1 on Linux x86).
>
>
> Here's a de
Hello,
I've probably found a temp table bug in PostgreSQL (tested with 7.4.7 and
8.0.1 on Linux x86).
Here's a demonstration of the bug:
CREATE FUNCTION testfunction()
RETURNS void
AS '
BEGIN
CREATE TEMP TABLE testtable (field int4) ON COMMIT DROP;
INSERT INTO test