Re: Reg. GET STACKED DIAGNOSTICS values to be stored in a single variable

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: Reg. GET STACKED DIAGNOSTICS values to be stored in a single variable
Дата
Msg-id CAFj8pRCDHAnFXV_jXsAvPpU+sDuHjP50VikwDGtnKtFiNy608w@mail.gmail.com
обсуждение исходный текст
Ответ на Reg. GET STACKED DIAGNOSTICS values to be stored in a single variable  (Maheswaran R <rmaheswaranmca@gmail.com>)
Список pgsql-general
Hi

čt 7. 4. 2022 v 11:58 odesílatel Maheswaran R <rmaheswaranmca@gmail.com> napsal:
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.

It can be a good idea, but surely with different syntax. Maybe this statement can be enhanced to use record variable as target, and then the usual syntax for composite value is

GET STACKED DIAGNOSTICS r := RETURNED_SQLSTATE, MESSAGE_TEXT,  PG_EXCEPTION_DETAIL, ...

I am not sure if this mailing list is good for proposing some new features - https://wiki.postgresql.org/wiki/Developer_FAQ

Regards

Pavel

--
Ragards
Maheswaran R
Krishnagiri

В списке pgsql-general по дате отправления:

Предыдущее
От: Maheswaran R
Дата:
Сообщение: Reg. GET STACKED DIAGNOSTICS values to be stored in a single variable
Следующее
От: Andrus
Дата:
Сообщение: How to get updated order data