Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0fd8d60

Browse files
committed
Allow \z to show sequences.
1 parent ef06ec6 commit 0fd8d60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/psql.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.126 1998/01/17 04:53:32 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.127 1998/01/22 18:50:22 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -493,7 +493,7 @@ rightsList(PsqlSettings *pset)
493493
listbuf[0] = '\0';
494494
strcat(listbuf, "SELECT relname, relacl ");
495495
strcat(listbuf, "FROM pg_class, pg_user ");
496-
strcat(listbuf, "WHERE ( relkind = 'r' OR relkind = 'i') ");
496+
strcat(listbuf, "WHERE ( relkind = 'r' OR relkind = 'i' OR relkind = 'S') ");
497497
strcat(listbuf, " and relname !~ '^pg_'");
498498
strcat(listbuf, " and relname !~ '^xin[vx][0-9]+'");
499499
strcat(listbuf, " and usesysid = relowner");

0 commit comments

Comments
 (0)