Suresh <[EMAIL PROTECTED]> writes:
> Why is check_stack_depth function enforced in context of evaluating 
> expressions in PostgreSQL ? What sort of recursion we are trying to safeguard 
> ?

create function foo(int) returns int as $$
select foo($1) $$ language sql;

select foo(1);

                        regards, tom lane

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to