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
2adf1ce6
Commit
2adf1ce6
authored
Jun 15, 2001
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Oops, forgot to commit doco updates for has_table_privilege.
parent
a8261182
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
2 deletions
+48
-2
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+48
-2
No files found.
doc/src/sgml/func.sgml
View file @
2adf1ce6
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.6
0 2001/06/13 22:51:02 momjian
Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.6
1 2001/06/15 21:03:07 tgl
Exp $ -->
<chapter id="functions">
<title>Functions and Operators</title>
...
...
@@ -3570,7 +3570,7 @@ SELECT NULLIF(value, '(none)') ...
<title>Miscellaneous Functions</>
<table>
<title>
Miscellaneous
Functions</>
<title>
Session Information
Functions</>
<tgroup cols="3">
<thead>
<row><entry>Name</> <entry>Return Type</> <entry>Description</></row>
...
...
@@ -3624,6 +3624,52 @@ SELECT NULLIF(value, '(none)') ...
of <function>current_user</>.
</para>
</note>
<table>
<title>Access Privilege Inquiry Functions</>
<tgroup cols="3">
<thead>
<row><entry>Name</> <entry>Return Type</> <entry>Description</></row>
</thead>
<tbody>
<row>
<entry>has_table_privilege(<parameter>user</parameter>,
<parameter>table</parameter>,
<parameter>access</parameter>)
</entry>
<entry>boolean</>
<entry>does user have access to table</>
</row>
<row>
<entry>has_table_privilege(<parameter>table</parameter>,
<parameter>access</parameter>)
</entry>
<entry>boolean</>
<entry>does current user have access to table</>
</row>
</tbody>
</tgroup>
</table>
<indexterm zone="functions-misc">
<primary>has_table_privilege</primary>
</indexterm>
<para>
<function>has_table_privilege</> determines whether a user
can access a table in a particular way. The user can be
specified by name or by usesysid, or if the argument is omitted
<function>current_user</> is assumed. The table can be specified
by name or by OID. (Thus, there are actually six variants of
<function>has_table_privilege</>, which can be distinguished by
the number and types of their arguments.) The desired access type
is specified by a text string, which must evaluate to one of the
values <literal>SELECT</>, <literal>INSERT</>, <literal>UPDATE</>,
<literal>DELETE</>, <literal>RULE</>, <literal>REFERENCES</>, or
<literal>TRIGGER</>. (Case of the string is not significant, however.)
</para>
</sect1>
...
...
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