From: | fn ln <emuser20140816(at)gmail(dot)com> |
---|---|
To: | tgl(at)sss(dot)pgh(dot)pa(dot)us |
Cc: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Subject: | Re: BUG #15435: Infinite-recursive SQL procedure can crash a database server |
Date: | 2018-10-17 14:30:30 |
Message-ID: | CA+99BHqrjVp8YaeX6ke34+j7g8Jgd3+yBYPywg8+xJJ-hSFfsg@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
I had missed it. Thanks.
2018年10月17日(水) 23:12 Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>:
> =?utf-8?q?PG_Bug_reporting_form?= <noreply(at)postgresql(dot)org> writes:
> > CREATE PROCEDURE proc1() LANGUAGE sql AS 'CALL proc1();';
> > CALL proc1(); -- crash
>
> Works for me in 11.0, no doubt as a result of this last-minute fix:
>
> https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=db9034bf7653fa527e2531e1a713dbbd37066a6b
>
> =# CALL proc1();
> ERROR: stack depth limit exceeded
> HINT: Increase the configuration parameter "max_stack_depth" (currently
> 2048kB), after ensuring the platform's stack depth limit is adequate.
> CONTEXT: SQL function "proc1" statement 1
> SQL function "proc1" statement 1
> SQL function "proc1" statement 1
> SQL function "proc1" statement 1
> SQL function "proc1" statement 1
> SQL function "proc1" statement 1
> ... lots more ...
>
> regards, tom lane
>
From | Date | Subject | |
---|---|---|---|
Next Message | PG Bug reporting form | 2018-10-18 11:57:41 | BUG #15437: Segfault during insert into declarative partitioned table with a trigger creating partition |
Previous Message | Tom Lane | 2018-10-17 14:12:15 | Re: BUG #15435: Infinite-recursive SQL procedure can crash a database server |