Re: function volatility - Mailing list pgsql-novice

From Leif Biberg Kristensen
Subject Re: function volatility
Date
Msg-id 201011221308.18074.leif@solumslekt.org
Whole thread Raw
In response to function volatility  (<maps@navigator-info.com>)
List pgsql-novice
On Monday 22. November 2010 12.30.31 maps@navigator-info.com wrote:
>
> How to declare function that return set of data from tables? for
> example :
>
>
> CREATE TYPE "public"."cst_test" AS (
>   "code" VARCHAR(10),
>   "name" VARCHAR(50),
>   "quantity" NUMERIC(10,2) );
>
> CREATE OR REPLACE FUNCTION public."sf_test"(id_code VARCHAR)
>   RETURNS SETOF "public"."cst_test" AS
> $body$
> SELECT
>   t1.code,
>   t1.name,
>   t2.quantity
> FROM "public"."test_1" t1
>   INNER JOIN "public"."test_2" t2 ON t1.id_test1 = t2.id_test1
> WHERE t1.code = $1
> $body$
> LANGUAGE 'sql' ;
>
>
> It's STABLE, IMMUTABLE OR VOLATILE?
>

A function that modifies the database is VOLATILE.
A function that doesn't modify the database, but does database lookups,
is STABLE.
A function that doesn't modify the database, and doesn't do database
lookups (like SQRT(x)) is IMMUTABLE.

regards,
Leif B. Kristensen

pgsql-novice by date:

Previous
From:
Date:
Subject: function volatility
Next
From: Matthew Walden
Date:
Subject: Re: Help with date query