Set timeout just on a query?
Can timeout be set just on a query?
Can we do the following?
Begin
do a query
set timeout
Exception
report a record
End;
Regards,
David
Can timeout be set just on a query?
Can we do the following?
Begin
do a query
set timeout
Exception
report a record
End;
Regards,
David
On May 9, 2022, at 17:58, Shaozhong SHI <shishaozhong@gmail.com> wrote:
Begindo a query
set timeout
Exception
report a recordEnd;
Yes. The syntax you are looking for is:
SET LOCAL statement_timeout = '<value>';
Best,
-- Christophe
On Tue, May 10, 2022 at 6:29 AM Shaozhong SHI <shishaozhong@gmail.com> wrote:
Can timeout be set just on a query?
Can we do the following?
Begin
do a query
set timeout
Exception
report a recordEnd;
Won't the statement_timeout [1]https://www.postgresql.org/docs/devel/runtime-config-client.html help here?
[1]: https://www.postgresql.org/docs/devel/runtime-config-client.html
Regards,
Bharath Rupireddy.