]> granicus.if.org Git - postgresql/commitdiff
Document that functions are checked independently of the view
authorBruce Momjian <bruce@momjian.us>
Sat, 27 Sep 2003 00:10:31 +0000 (00:10 +0000)
committerBruce Momjian <bruce@momjian.us>
Sat, 27 Sep 2003 00:10:31 +0000 (00:10 +0000)
permissions.

doc/src/sgml/ref/create_view.sgml

index a8d4a20f09a27f76ba610af89d591ee2c34c419a..31d58dbc5ddc1e4c8e06ddeaf26b42e333d4c871 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$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
 -->
 
@@ -118,6 +118,12 @@ CREATE VIEW vista AS SELECT 'Hello World';
 CREATE VIEW vista AS SELECT text 'Hello World' AS hello;
 </programlisting>
    </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>