diff options
| author | Pavan Deolasee | 2015-06-30 02:48:49 +0000 |
|---|---|---|
| committer | Pavan Deolasee | 2015-06-30 05:29:53 +0000 |
| commit | feaccc236ff2c1eabc163916f0c35f2e450683d7 (patch) | |
| tree | 36a9cd39c802aa406dd1c88dd54efb7af588cc99 /src/include/commands | |
| parent | ed568b0a6cbc91100dec3e0e4799b39e28a56ca7 (diff) | |
| parent | 47fe4d25d57c81b9d7b2ac88783a12ee487db220 (diff) | |
Merge from upstream master branch of PostgreSQL repository
Diffstat (limited to 'src/include/commands')
| -rw-r--r-- | src/include/commands/defrem.h | 2 | ||||
| -rw-r--r-- | src/include/commands/tablespace.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/include/commands/defrem.h b/src/include/commands/defrem.h index dcb6c082c5..9b81c16d82 100644 --- a/src/include/commands/defrem.h +++ b/src/include/commands/defrem.h @@ -51,7 +51,7 @@ extern void SetFunctionArgType(Oid funcOid, int argIndex, Oid newArgType); extern ObjectAddress AlterFunction(AlterFunctionStmt *stmt); extern ObjectAddress CreateCast(CreateCastStmt *stmt); extern void DropCastById(Oid castOid); -extern Oid CreateTransform(CreateTransformStmt *stmt); +extern ObjectAddress CreateTransform(CreateTransformStmt *stmt); extern void DropTransformById(Oid transformOid); extern void IsThereFunctionInNamespace(const char *proname, int pronargs, oidvector *proargtypes, Oid nspOid); diff --git a/src/include/commands/tablespace.h b/src/include/commands/tablespace.h index 86b0477335..6b928a58a0 100644 --- a/src/include/commands/tablespace.h +++ b/src/include/commands/tablespace.h @@ -56,6 +56,7 @@ extern Oid get_tablespace_oid(const char *tablespacename, bool missing_ok); extern char *get_tablespace_name(Oid spc_oid); extern bool directory_is_empty(const char *path); +extern void remove_tablespace_symlink(const char *linkloc); extern void tblspc_redo(XLogReaderState *rptr); extern void tblspc_desc(StringInfo buf, XLogReaderState *rptr); |
