标签: database postgresql
我的postgresql DB中有很多功能。他们中的许多人都有这些行
RAISE INFO 'Some step completed'; RAISE NOTICE 'Some step completed';
如何才能在查询结果中显示它们?
成千上万条消息会减慢查询执行时间。我尝试了SET client_min_messages TO warning,但它仅停用NOTICE条消息类型,我仍然看到INFO。
SET client_min_messages TO warning
NOTICE
INFO