summaryrefslogtreecommitdiff
path: root/src/include/commands/comment.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/commands/comment.h')
-rw-r--r--src/include/commands/comment.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/include/commands/comment.h b/src/include/commands/comment.h
deleted file mode 100644
index bf2acfcfa0e..00000000000
--- a/src/include/commands/comment.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * comment.h
- *
- * Prototypes for functions in commands/comment.c
- *
- * Copyright (c) 1999, PostgreSQL Global Development Group
- *
- *-------------------------------------------------------------------------
- */
-
-#ifndef COMMENT_H
-#define COMMENT_H
-
-#include "nodes/parsenodes.h"
-
-/*------------------------------------------------------------------
- * Function Prototypes --
- *
- * The following protoypes define the public functions of the comment
- * related routines. CommentObject() implements the SQL "COMMENT ON"
- * command. DeleteComments() deletes all comments for an object.
- * CreateComments creates (or deletes, if comment is NULL) a comment
- * for a specific key.
- *------------------------------------------------------------------
- */
-
-extern void CommentObject(CommentStmt *stmt);
-
-extern void DeleteComments(Oid oid, Oid classoid);
-
-extern void CreateComments(Oid oid, Oid classoid, int32 subid, char *comment);
-
-#endif /* COMMENT_H */