diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2015-05-09 13:36:52 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2015-05-09 13:36:52 -0400 |
commit | cb9fa802b32b222b43e28866c20ebb7125779ec3 (patch) | |
tree | 4d89fc13693bb81dc7e199045f0c73f6cede7478 /src/include/utils/builtins.h | |
parent | 0c90f6769de6a60f842c916d49b404d03bcc503a (diff) | |
download | postgresql-cb9fa802b32b222b43e28866c20ebb7125779ec3.tar.gz postgresql-cb9fa802b32b222b43e28866c20ebb7125779ec3.zip |
Add new OID alias type regnamespace
Catalog version bumped
Kyotaro HORIGUCHI
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 654ae1b305e..a90bfe29e9f 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -635,6 +635,11 @@ extern Datum regroleout(PG_FUNCTION_ARGS); extern Datum regrolerecv(PG_FUNCTION_ARGS); extern Datum regrolesend(PG_FUNCTION_ARGS); extern Datum to_regrole(PG_FUNCTION_ARGS); +extern Datum regnamespacein(PG_FUNCTION_ARGS); +extern Datum regnamespaceout(PG_FUNCTION_ARGS); +extern Datum regnamespacerecv(PG_FUNCTION_ARGS); +extern Datum regnamespacesend(PG_FUNCTION_ARGS); +extern Datum to_regnamespace(PG_FUNCTION_ARGS); extern Datum regconfigin(PG_FUNCTION_ARGS); extern Datum regconfigout(PG_FUNCTION_ARGS); extern Datum regconfigrecv(PG_FUNCTION_ARGS); |