Commit 7a32ff97 authored by Robert Haas's avatar Robert Haas

Revert patch adding support for logging the current role.

This reverts commit a8a88679, committed
by me earlier today (2011-01-12).  This isn't safe inside an aborted
transaction.

Noted by Tom Lane.
parent a8a88679
...@@ -3504,12 +3504,7 @@ local0.* /var/log/postgresql ...@@ -3504,12 +3504,7 @@ local0.* /var/log/postgresql
</row> </row>
<row> <row>
<entry><literal>%u</literal></entry> <entry><literal>%u</literal></entry>
<entry>Login user name</entry> <entry>User name</entry>
<entry>yes</entry>
</row>
<row>
<entry><literal>%U</literal></entry>
<entry>Current user name</entry>
<entry>yes</entry> <entry>yes</entry>
</row> </row>
<row> <row>
......
...@@ -1826,16 +1826,6 @@ log_line_prefix(StringInfo buf, ErrorData *edata) ...@@ -1826,16 +1826,6 @@ log_line_prefix(StringInfo buf, ErrorData *edata)
appendStringInfoString(buf, username); appendStringInfoString(buf, username);
} }
break; break;
case 'U':
if (MyProcPort)
{
const char *username = GetUserNameFromId(GetUserId());
if (username == NULL || *username == '\0')
username = _("[unknown]");
appendStringInfoString(buf, username);
}
break;
case 'd': case 'd':
if (MyProcPort) if (MyProcPort)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment