Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9408783 commit f196738Copy full SHA for f196738
src/backend/utils/error/elog.c
@@ -3,6 +3,12 @@
3
* elog.c
4
* error logging and reporting
5
*
6
+ * Because of the extremely high rate at which log messages can be generated,
7
+ * we need to be mindful of the performance cost of obtaining any information
8
+ * that may be logged. Also, it's important to keep in mind that this code may
9
+ * get called from within an aborted transaction, in which case operations
10
+ * such as syscache lookups are unsafe.
11
+ *
12
* Some notes about recursion and errors during error processing:
13
14
* We need to be robust about recursive-error scenarios --- for example,
0 commit comments