Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
d017bf41
Commit
d017bf41
authored
Apr 12, 2013
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor wording corrections for object-access hook stuff.
KaiGai Kohei
parent
b620fdab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/backend/catalog/objectaccess.c
src/backend/catalog/objectaccess.c
+1
-1
src/include/catalog/objectaccess.h
src/include/catalog/objectaccess.h
+1
-1
No files found.
src/backend/catalog/objectaccess.c
View file @
d017bf41
...
@@ -96,7 +96,7 @@ RunNamespaceSearchHook(Oid objectId, bool ereport_on_violation)
...
@@ -96,7 +96,7 @@ RunNamespaceSearchHook(Oid objectId, bool ereport_on_violation)
{
{
ObjectAccessNamespaceSearch
ns_arg
;
ObjectAccessNamespaceSearch
ns_arg
;
/*
XXX - should be checked at caller side
*/
/*
caller should check, but just in case...
*/
Assert
(
object_access_hook
!=
NULL
);
Assert
(
object_access_hook
!=
NULL
);
memset
(
&
ns_arg
,
0
,
sizeof
(
ObjectAccessNamespaceSearch
));
memset
(
&
ns_arg
,
0
,
sizeof
(
ObjectAccessNamespaceSearch
));
...
...
src/include/catalog/objectaccess.h
View file @
d017bf41
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
*
*
* OAT_NAMESPACE_SEARCH should be invoked prior to object name lookup under
* OAT_NAMESPACE_SEARCH should be invoked prior to object name lookup under
* a particular namespace. This event is equivalent to usage permission
* a particular namespace. This event is equivalent to usage permission
*
permission
on a schema under the default access control mechanism.
* on a schema under the default access control mechanism.
*
*
* Other types may be added in the future.
* Other types may be added in the future.
*/
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment