aboutsummaryrefslogtreecommitdiff
path: root/src/include/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/commands')
-rw-r--r--src/include/commands/async.h5
-rw-r--r--src/include/commands/cluster.h5
-rw-r--r--src/include/commands/command.h14
-rw-r--r--src/include/commands/version.h10
4 files changed, 6 insertions, 28 deletions
diff --git a/src/include/commands/async.h b/src/include/commands/async.h
index c572c64243c..7bae5c6f4b4 100644
--- a/src/include/commands/async.h
+++ b/src/include/commands/async.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: async.h,v 1.4 1996/11/08 06:01:49 momjian Exp $
+ * $Id: async.h,v 1.5 1997/08/19 21:38:03 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -20,10 +20,7 @@ extern void Async_Notify(char *relname);
extern void Async_NotifyAtCommit(void);
extern void Async_NotifyAtAbort(void);
extern void Async_Listen(char *relname, int pid);
-extern void Async_Unlisten(char *relname, int pid);
-extern void Async_UnlistenOnExit(int code, char *relname);
extern GlobalMemory notifyContext;
-extern void Async_NotifyFrontEnd(void);
#endif /* ASYNC_H */
diff --git a/src/include/commands/cluster.h b/src/include/commands/cluster.h
index e588c88a3e2..45ba116212e 100644
--- a/src/include/commands/cluster.h
+++ b/src/include/commands/cluster.h
@@ -5,7 +5,7 @@
*
* Copyright (c) 1994-5, Regents of the University of California
*
- * $Id: cluster.h,v 1.1 1996/08/28 07:21:42 scrappy Exp $
+ * $Id: cluster.h,v 1.2 1997/08/19 21:38:06 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -23,8 +23,5 @@
* functions
*/
extern void cluster(char oldrelname[], char oldindexname[]);
-extern Relation copy_heap(Oid OIDOldHeap);
-extern void copy_index(Oid OIDOldIndex, Oid OIDNewHeap);
-extern void rebuildheap(Oid OIDNewHeap, Oid OIDOldHeap, Oid OIDOldIndex);
#endif /* CLUSTER_H */
diff --git a/src/include/commands/command.h b/src/include/commands/command.h
index 850da5681b1..d91d7b3a913 100644
--- a/src/include/commands/command.h
+++ b/src/include/commands/command.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: command.h,v 1.3 1996/11/06 08:05:02 scrappy Exp $
+ * $Id: command.h,v 1.4 1997/08/19 21:38:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -18,16 +18,6 @@
extern MemoryContext PortalExecutorHeapMemory;
/*
- * PortalCleanup --
- * Cleans up the query state of the portal.
- *
- * Exceptions:
- * BadArg if portal invalid.
- */
-extern void PortalCleanup(Portal portal);
-
-
-/*
* PerformPortalFetch --
* Performs the POSTQUEL function FETCH. Fetches count (or all if 0)
* tuples in portal with name in the forward direction iff goForward.
@@ -45,6 +35,8 @@ extern void PerformPortalFetch(char *name, bool forward, int count,
*/
extern void PerformPortalClose(char *name, CommandDest dest);
+extern void PortalCleanup(Portal portal);
+
/*
* PerformAddAttribute --
* Performs the POSTQUEL function ADD.
diff --git a/src/include/commands/version.h b/src/include/commands/version.h
index 227fcaeaaa5..1b3e5169d99 100644
--- a/src/include/commands/version.h
+++ b/src/include/commands/version.h
@@ -6,19 +6,11 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: version.h,v 1.3 1996/11/06 10:29:33 scrappy Exp $
+ * $Id: version.h,v 1.4 1997/08/19 21:38:10 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef VERSION_H
#define VERSION_H
-
-
-extern void DefineVersion(char *name, char *fromRelname, char *date);
-extern void VersionCreate(char *vname, char *bname);
-extern void VersionAppend(char *vname, char *bname);
-extern void VersionRetrieve(char *vname, char *bname, char *snapshot);
-extern void VersionDelete(char *vname, char *bname, char *snapshot);
-extern void VersionReplace(char *vname, char *bname, char *snapshot);
#endif /* VERSION_H */