Thread: with(isstrict) vs ISSTRICT

with(isstrict) vs ISSTRICT

From
strk
Date:
Does with(isStrict) still work ?
If not when did postgres drop its support ?

TIA
--strk;

Re: [HACKERS] with(isstrict) vs ISSTRICT

From
Tom Lane
Date:
strk <strk@keybit.net> writes:
> Does with(isStrict) still work ?

regression=# create function foo(int) returns int as
regression-# 'select $1' language sql with(isStrict);
CREATE FUNCTION
regression=# select version();
                               version
---------------------------------------------------------------------
 PostgreSQL 7.5devel on hppa2.0-hp-hpux10.20, compiled by GCC 2.95.3
(1 row)

Looks like it.

            regards, tom lane