Commit bb953ad1 authored by Bruce Momjian's avatar Bruce Momjian

Fix pg_dumpall on pre-8.1 servers

rolname did not exist in pg_shadow.

Backpatch to 9.3

Report by Andrew Gierth via IRC
parent 158b7fa6
...@@ -699,7 +699,7 @@ dumpRoles(PGconn *conn) ...@@ -699,7 +699,7 @@ dumpRoles(PGconn *conn)
"valuntil as rolvaliduntil, " "valuntil as rolvaliduntil, "
"false as rolreplication, " "false as rolreplication, "
"null as rolcomment, " "null as rolcomment, "
"rolname = current_user AS is_current_user " "usename = current_user AS is_current_user "
"FROM pg_shadow " "FROM pg_shadow "
"UNION ALL " "UNION ALL "
"SELECT 0, groname as rolname, " "SELECT 0, groname as rolname, "
......
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