From 87cbcff9e6e3f037c930f55d7aaeff517265e85c Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 27 Sep 2003 00:10:31 +0000 Subject: [PATCH] Document that functions are checked independently of the view permissions. --- doc/src/sgml/ref/create_view.sgml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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. + + -- 2.40.0