1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Have \dn+ show permissions and description for schemas.

Dennis Bjorklund
This commit is contained in:
Bruce Momjian
2004-07-13 16:48:16 +00:00
parent dc0e76ca36
commit bbcee544aa
5 changed files with 25 additions and 15 deletions

View File

@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.120 2004/07/11 21:34:03 momjian Exp $
* $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.121 2004/07/13 16:48:16 momjian Exp $
*/
#include "postgres_fe.h"
#include "command.h"
@ -326,7 +326,7 @@ exec_command(const char *cmd,
success = do_lo_list();
break;
case 'n':
success = listSchemas(pattern);
success = listSchemas(pattern, show_verbose);
break;
case 'o':
success = describeOperators(pattern);