From: Bruce Momjian Date: Sat, 27 Sep 2003 00:10:31 +0000 (+0000) Subject: Document that functions are checked independently of the view X-Git-Tag: REL7_4_BETA4~69 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=87cbcff9e6e3f037c930f55d7aaeff517265e85c;p=postgresql Document that functions are checked independently of the view permissions. --- diff --git a/doc/src/sgml/ref/create_view.sgml b/doc/src/sgml/ref/create_view.sgml index a8d4a20f09..31d58dbc5d 100644 --- a/doc/src/sgml/ref/create_view.sgml +++ b/doc/src/sgml/ref/create_view.sgml @@ -1,5 +1,5 @@ @@ -118,6 +118,12 @@ CREATE VIEW vista AS SELECT 'Hello World'; CREATE VIEW vista AS SELECT text 'Hello World' AS hello; + + + While access to tables in the view is controlled entirely by permissions + on the view, functions called by the view are checked independently. + +