projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9032245
)
Document that functions are checked independently of the view
author
Bruce Momjian
Sat, 27 Sep 2003 00:10:31 +0000
(
00:10
+0000)
committer
Bruce Momjian
Sat, 27 Sep 2003 00:10:31 +0000
(
00:10
+0000)
permissions.
doc/src/sgml/ref/create_view.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/ref/create_view.sgml
b/doc/src/sgml/ref/create_view.sgml
index a8d4a20f09a27f76ba610af89d591ee2c34c419a..31d58dbc5ddc1e4c8e06ddeaf26b42e333d4c871 100644
(file)
--- 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.
+
+