Reg. GET STACKED DIAGNOSTICS values to be stored in a single variable - Mailing list pgsql-general

From Maheswaran R
Subject Reg. GET STACKED DIAGNOSTICS values to be stored in a single variable
Date
Msg-id CAMfCLzOSYoXH3dAjRHEJfJHD9KPM1a1b2KyJLL_+WvPTt-6tfg@mail.gmail.com
Whole thread Raw
Responses Re: Reg. GET STACKED DIAGNOSTICS values to be stored in a single variable  (Pavel Stehule <pavel.stehule@gmail.com>)
List pgsql-general
Sir/madam,
While exception handling, we have to write multiple repeated lines in each function to handle the GET STACKED DIAGNOSTICS values. it would be better if all items in the diagnostics may be assigned to a single variable/object.
at least like
GET STACKED DIAGNOSTICS v_state  := RETURNED_SQLSTATE || MESSAGE_TEXT || PG_EXCEPTION_DETAIL  || PG_EXCEPTION_HINT  || PG_EXCEPTION_CONTEXT;

Now we have to declare more than 5 variables to store the GET STACKED DIAGNOSTICS values and pass it to another function to record the error log. if it is in a single variable/object then it will reduce the code.
--
Ragards
Maheswaran R
Krishnagiri

pgsql-general by date:

Previous
From: Laurenz Albe
Date:
Subject: Re: Problem with PG 11 database on OrangePi3 (ARMBIAN, ARM64) after disk disrupion (problem with USB disk connection)
Next
From: Pavel Stehule
Date:
Subject: Re: Reg. GET STACKED DIAGNOSTICS values to be stored in a single variable