with(isstrict) vs ISSTRICT

Started by strkabout 22 years ago2 messages
#1strk
strk@keybit.net

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

TIA
--strk;

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: strk (#1)
Re: [HACKERS] with(isstrict) vs ISSTRICT

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