diff options
author | Robert Haas | 2011-06-28 01:17:25 +0000 |
---|---|---|
committer | Robert Haas | 2011-06-28 01:19:31 +0000 |
commit | c533c1477f6beede766034c1226a20ac08320b05 (patch) | |
tree | fd281655d2f87842479dee0a704311257c8b620d /src/include/rewrite/rewriteSupport.h | |
parent | e1cd66f74862936d84acf3008118d6094c56ad58 (diff) |
Add a missing_ok argument to get_object_address().
This lays the groundwork for an upcoming patch to streamline the
handling of DROP commands.
KaiGai Kohei
Diffstat (limited to 'src/include/rewrite/rewriteSupport.h')
-rw-r--r-- | src/include/rewrite/rewriteSupport.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/rewrite/rewriteSupport.h b/src/include/rewrite/rewriteSupport.h index 77417ba034a..22e6ca26cff 100644 --- a/src/include/rewrite/rewriteSupport.h +++ b/src/include/rewrite/rewriteSupport.h @@ -23,6 +23,7 @@ extern void SetRelationRuleStatus(Oid relationId, bool relHasRules, bool relIsBecomingView); extern Oid get_rewrite_oid(Oid relid, const char *rulename, bool missing_ok); -extern Oid get_rewrite_oid_without_relid(const char *rulename, Oid *relid); +extern Oid get_rewrite_oid_without_relid(const char *rulename, + Oid *relid, bool missing_ok); #endif /* REWRITESUPPORT_H */ |