Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a87f15d5
Commit
a87f15d5
authored
May 05, 2008
by
Andrew Dunstan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Display ACLS using multiple lines for psql's \z. Brendan Jurd.
parent
c0b1b01e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
15 deletions
+19
-15
doc/src/sgml/ref/grant.sgml
doc/src/sgml/ref/grant.sgml
+7
-5
src/bin/psql/describe.c
src/bin/psql/describe.c
+2
-2
src/test/regress/expected/dependency.out
src/test/regress/expected/dependency.out
+10
-8
No files found.
doc/src/sgml/ref/grant.sgml
View file @
a87f15d5
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/grant.sgml,v 1.6
7 2007/10/30 19:43:30 tgl
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/grant.sgml,v 1.6
8 2008/05/05 01:21:03 adunstan
Exp $
PostgreSQL documentation
-->
...
...
@@ -405,10 +405,12 @@ GRANT <replaceable class="PARAMETER">role</replaceable> [, ...] TO <replaceable
to obtain information about existing privileges, for example:
<programlisting>
=> \z mytable
Access privileges for database "lusitania"
Schema | Name | Type | Access privileges
--------+---------+-------+---------------------------------------------------
public | mytable | table | {miriam=arwdxt/miriam,=r/miriam,admin=arw/miriam}
Access privileges for database "lusitania"
Schema | Name | Type | Access privileges
--------+---------+-------+----------------------
public | mytable | table | miriam=arwdxt/miriam
: =r/miriam
: admin=arw/miriam
(1 row)
</programlisting>
The entries shown by <command>\z</command> are interpreted thus:
...
...
src/bin/psql/describe.c
View file @
a87f15d5
...
...
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.1
69 2008/05/05 00:11:31
adunstan Exp $
* $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.1
70 2008/05/05 01:21:03
adunstan Exp $
*/
#include "postgres_fe.h"
#include "describe.h"
...
...
@@ -493,7 +493,7 @@ permissionsList(const char *pattern)
"SELECT n.nspname as
\"
%s
\"
,
\n
"
" c.relname as
\"
%s
\"
,
\n
"
" CASE c.relkind WHEN 'r' THEN '%s' WHEN 'v' THEN '%s' WHEN 'S' THEN '%s' END as
\"
%s
\"
,
\n
"
"
c.relacl
as
\"
%s
\"\n
"
"
pg_catalog.array_to_string(c.relacl, E'
\\
n')
as
\"
%s
\"\n
"
"FROM pg_catalog.pg_class c
\n
"
" LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
\n
"
"WHERE c.relkind IN ('r', 'v', 'S')
\n
"
,
...
...
src/test/regress/expected/dependency.out
View file @
a87f15d5
...
...
@@ -68,19 +68,21 @@ NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "deptest_pkey" fo
GRANT ALL ON deptest1 TO regression_user2;
RESET SESSION AUTHORIZATION;
\z deptest1
Access privileges for database "regression"
Schema | Name | Type | Access privileges
--------+----------+-------+------------------------------------------------------------------------------------------------------------------------------------
public | deptest1 | table | {regression_user0=arwdxt/regression_user0,regression_user1=a*r*w*d*x*t*/regression_user0,regression_user2=arwdxt/regression_user1}
Access privileges for database "regression"
Schema | Name | Type | Access privileges
--------+----------+-------+------------------------------------------------
public | deptest1 | table | regression_user0=arwdxt/regression_user0
: regression_user1=a*r*w*d*x*t*/regression_user0
: regression_user2=arwdxt/regression_user1
(1 row)
DROP OWNED BY regression_user1;
-- all grants revoked
\z deptest1
Access privileges for database "regression"
Schema | Name | Type |
Access privileges
--------+----------+-------+------------------------------------------
--
public | deptest1 | table |
{regression_user0=arwdxt/regression_user0}
Access privileges for database "regression"
Schema | Name | Type |
Access privileges
--------+----------+-------+------------------------------------------
public | deptest1 | table |
regression_user0=arwdxt/regression_user0
(1 row)
-- table was dropped
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment