Skip to content
Snippets Groups Projects
Commit 87cbcff9 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Document that functions are checked independently of the view

permissions.
parent 90322456
No related branches found
No related tags found
No related merge requests found
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_view.sgml,v 1.24 2003/09/12 00:12:47 tgl Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_view.sgml,v 1.25 2003/09/27 00:10:31 momjian Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
...@@ -118,6 +118,12 @@ CREATE VIEW vista AS SELECT 'Hello World'; ...@@ -118,6 +118,12 @@ CREATE VIEW vista AS SELECT 'Hello World';
CREATE VIEW vista AS SELECT text 'Hello World' AS hello; CREATE VIEW vista AS SELECT text 'Hello World' AS hello;
</programlisting> </programlisting>
</para> </para>
<para>
While access to tables in the view is controlled entirely by permissions
on the view, functions called by the view are checked independently.
</para>
</refsect1> </refsect1>
<refsect1> <refsect1>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment