We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Currently only NOTICE is display in the messages tab. Add support for other message types: https://www.postgresql.org/docs/current/plpgsql-errors-and-messages.html
The text was updated successfully, but these errors were encountered:
It seems that the only case which is not working is "raise exception" Tested with this:
CREATE OR REPLACE PROCEDURE public.raise_notice(IN s text) LANGUAGE plpgsql AS $ procedure $ begin raise warning '%', s; raise notice '%', s; raise info '%', s; raise log '%', s; -- raise debug '%', s; --raise exception '%', s; end; $ procedure $;
set client_min_messages to 'debug'; call raise_notice('note');
Sorry, something went wrong.
eug3nix
No branches or pull requests
Currently only NOTICE is display in the messages tab.
Add support for other message types: https://www.postgresql.org/docs/current/plpgsql-errors-and-messages.html
The text was updated successfully, but these errors were encountered: