File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
* Portions Copyright (c) 1994, Regents of the University of California
7
7
*
8
8
*
9
- * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.72 2006/03/05 15:58:51 momjian Exp $
9
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.73 2006/03/30 01:08:15 adunstan Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
@@ -444,7 +444,7 @@ dumpRoles(PGconn *conn)
444
444
"true as rolcanlogin, "
445
445
"-1 as rolconnlimit, "
446
446
"passwd as rolpassword, "
447
- "valuntil as rolvaliduntil "
447
+ "valuntil as rolvaliduntil, "
448
448
"null as rolcomment "
449
449
"FROM pg_shadow "
450
450
"UNION ALL "
@@ -457,8 +457,8 @@ dumpRoles(PGconn *conn)
457
457
"false as rolcanlogin, "
458
458
"-1 as rolconnlimit, "
459
459
"null::text as rolpassword, "
460
- "null::abstime as rolvaliduntil "
461
- "null "
460
+ "null::abstime as rolvaliduntil, "
461
+ "null as rolcomment "
462
462
"FROM pg_group" );
463
463
464
464
res = executeQuery (conn , buf -> data );
You can’t perform that action at this time.
0 commit comments