Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
cf3b164a
Commit
cf3b164a
authored
23 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Add documentation for pg_get_ruledef and friends.
parent
a157385d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/func.sgml
+77
-17
77 additions, 17 deletions
doc/src/sgml/func.sgml
with
77 additions
and
17 deletions
doc/src/sgml/func.sgml
+
77
−
17
View file @
cf3b164a
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.8
4
2001/11/21
05:53:41 thomas
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.8
5
2001/11/21
22:33:14 tgl
Exp $
PostgreSQL documentation
-->
...
...
@@ -4191,18 +4191,18 @@ SELECT NULLIF(value, '(none)') ...
<tbody>
<row>
<entry>current_user</>
<entry>name</>
<entry>
<function>
current_user</>
</entry>
<entry>
<type>
name</>
</entry>
<entry>user name of current execution context</>
</row>
<row>
<entry>session_user</>
<entry>name</>
<entry>
<function>
session_user</>
</entry>
<entry>
<type>
name</>
</entry>
<entry>session user name</>
</row>
<row>
<entry>
user</
>
<entry>name</>
<entry>
<function>user</></entry
>
<entry>
<type>
name</>
</entry>
<entry>equivalent to <function>current_user</></>
</row>
</tbody>
...
...
@@ -4216,7 +4216,7 @@ SELECT NULLIF(value, '(none)') ...
<para>
The <function>session_user</> is the user that initiated a database
connection
and
is fixed for the duration of that connection. The
connection
; it
is fixed for the duration of that connection. The
<function>current_user</> is the user identifier that is applicable
for permission checking. Currently it is always equal to the session
user, but in the future there might be <quote>setuid</> functions and
...
...
@@ -4226,7 +4226,7 @@ SELECT NULLIF(value, '(none)') ...
</para>
<para>
Note that these functions have special syntactic status in <acronym>SQL</>
;
Note that these functions have special syntactic status in <acronym>SQL</>
:
they must be called without trailing parentheses.
</para>
...
...
@@ -4238,6 +4238,32 @@ SELECT NULLIF(value, '(none)') ...
</para>
</note>
<table>
<title>System Information Functions</>
<tgroup cols="3">
<thead>
<row><entry>Name</> <entry>Return Type</> <entry>Description</></row>
</thead>
<tbody>
<row>
<entry><function>version</></entry>
<entry><type>text</></entry>
<entry>PostgreSQL version information</>
</row>
</tbody>
</tgroup>
</table>
<indexterm zone="functions-misc">
<primary>version</primary>
</indexterm>
<para>
<function>version()</> returns a string describing the PostgreSQL
server's version.
</para>
<table>
<title>Access Privilege Inquiry Functions</>
<tgroup cols="3">
...
...
@@ -4272,7 +4298,9 @@ SELECT NULLIF(value, '(none)') ...
<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 ID (<classname>pg_user</>.<structfield>usesysid</>) or if the argument is omitted
specified by name or by ID
(<classname>pg_user</>.<structfield>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
...
...
@@ -4284,7 +4312,7 @@ SELECT NULLIF(value, '(none)') ...
</para>
<table>
<title>
System
Information Functions</>
<title>
Catalog
Information Functions</>
<tgroup cols="3">
<thead>
<row><entry>Name</> <entry>Return Type</> <entry>Description</></row>
...
...
@@ -4292,21 +4320,53 @@ SELECT NULLIF(value, '(none)') ...
<tbody>
<row>
<entry>version</>
<entry>text</>
<entry>PostgreSQL version information</>
<entry><function>pg_get_viewdef</>(<parameter>viewname</parameter>)</entry>
<entry><type>text</></entry>
<entry>Get CREATE VIEW command for view</>
</row>
<row>
<entry><function>pg_get_ruledef</>(<parameter>rulename</parameter>)</entry>
<entry><type>text</></entry>
<entry>Get CREATE RULE command for rule</>
</row>
<row>
<entry><function>pg_get_indexdef</>(<parameter>indexOID</parameter>)</entry>
<entry><type>text</></entry>
<entry>Get CREATE INDEX command for index</>
</row>
<row>
<entry><function>pg_get_userbyid</>(<parameter>userid</parameter>)</entry>
<entry><type>name</></entry>
<entry>Get user name given sysid</>
</row>
</tbody>
</tgroup>
</table>
<indexterm zone="functions-misc">
<primary>version</primary>
<primary>pg_get_viewdef</primary>
</indexterm>
<indexterm zone="functions-misc">
<primary>pg_get_ruledef</primary>
</indexterm>
<indexterm zone="functions-misc">
<primary>pg_get_indexdef</primary>
</indexterm>
<indexterm zone="functions-misc">
<primary>pg_get_userbyid</primary>
</indexterm>
<para>
<function>version()</> returns a string describing the PostgreSQL
server's version.
These functions extract information from the system catalogs.
<function>pg_get_viewdef()</>, <function>pg_get_ruledef()</>, and
<function>pg_get_indexdef()</> respectively reconstruct the creating
command for a view, rule, or index. (Note that this is a decompiled
reconstruction, not the verbatim text of the command.)
<function>pg_get_userbyid()</> extracts a user's name given a
<structfield>usesysid</> value.
</para>
</sect1>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment