]> granicus.if.org Git - postgresql/commit
Fix elog.c to avoid infinite recursion (leading to backend crash) when
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 21 Jul 2007 22:12:38 +0000 (22:12 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 21 Jul 2007 22:12:38 +0000 (22:12 +0000)
commit681690f4e374d88877ea2f4de1baa04f780abd8e
treeaa8c99f9e996226746f4737973811a9086eddc69
parentc556447c70c937e5910fbbbc9653adc22c42a5ee
Fix elog.c to avoid infinite recursion (leading to backend crash) when
log_min_error_statement is active and there is some problem in logging the
current query string; for example, that it's too long to include in the log
message without running out of memory.  This problem has existed since the
log_min_error_statement feature was introduced.  No doubt the reason it
wasn't detected long ago is that 8.2 is the first release that defaults
log_min_error_statement to less than PANIC level.
Per report from Bill Moran.
src/backend/utils/error/elog.c