mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
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
This commit is contained in:
parent
158b7fa6a3
commit
bb953ad164
@ -699,7 +699,7 @@ dumpRoles(PGconn *conn)
|
||||
"valuntil as rolvaliduntil, "
|
||||
"false as rolreplication, "
|
||||
"null as rolcomment, "
|
||||
"rolname = current_user AS is_current_user "
|
||||
"usename = current_user AS is_current_user "
|
||||
"FROM pg_shadow "
|
||||
"UNION ALL "
|
||||
"SELECT 0, groname as rolname, "
|
||||
|
Loading…
Reference in New Issue
Block a user