Re: STABLE has no effect on PL/pgsql functions - Mailing list pgsql-novice

From psql-novice@netzach.co.il
Subject Re: STABLE has no effect on PL/pgsql functions
Date
Msg-id Pine.LNX.4.58.0706011245530.22093@perpetual.homelinux.org
Whole thread Raw
In response to STABLE has no effect on PL/pgsql functions  (psql-novice@netzach.co.il)
List pgsql-novice
This characteristic is extremely annoying, given the following:

SELECT * FROM my_table WHERE field1 != ALL (arrayfunc());
  The above reruns arrayfunc() for every line

SELECT * FROM my_table WHERE field1 != ALL
    (SELECT arrayfunc());
ERROR: operator does not exist: interval = interval[]

  The above throws a tantrum, apparently because it considers it to be
an array of arrays.

Netzach

pgsql-novice by date:

Previous
From: psql-novice@netzach.co.il
Date:
Subject: STABLE has no effect on PL/pgsql functions
Next
From: Oliver Elphick
Date:
Subject: Re: STABLE has no effect on PL/pgsql functions