aboutsummaryrefslogtreecommitdiff
path: root/src/include/commands/command.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1997-09-07 05:04:48 +0000
committerBruce Momjian <bruce@momjian.us>1997-09-07 05:04:48 +0000
commit1ccd423235a48739d6f7a4d7889705b5f9ecc69b (patch)
tree8001c4e839dfad8f29ceda7f8c5f5dbb8759b564 /src/include/commands/command.h
parent8fecd4febf8357f3cc20383ed29ced484877d5ac (diff)
downloadpostgresql-1ccd423235a48739d6f7a4d7889705b5f9ecc69b.tar.gz
postgresql-1ccd423235a48739d6f7a4d7889705b5f9ecc69b.zip
Massive commit to run PGINDENT on all *.c and *.h files.
Diffstat (limited to 'src/include/commands/command.h')
-rw-r--r--src/include/commands/command.h30
1 files changed, 16 insertions, 14 deletions
diff --git a/src/include/commands/command.h b/src/include/commands/command.h
index d91d7b3a913..78c4aa5ea0e 100644
--- a/src/include/commands/command.h
+++ b/src/include/commands/command.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
* command.h--
- * prototypes for command.c.
+ * prototypes for command.c.
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: command.h,v 1.4 1997/08/19 21:38:07 momjian Exp $
+ * $Id: command.h,v 1.5 1997/09/07 04:57:22 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -19,29 +19,31 @@ extern MemoryContext PortalExecutorHeapMemory;
/*
* PerformPortalFetch --
- * Performs the POSTQUEL function FETCH. Fetches count (or all if 0)
+ * Performs the POSTQUEL function FETCH. Fetches count (or all if 0)
* tuples in portal with name in the forward direction iff goForward.
*
* Exceptions:
- * BadArg if forward invalid.
- * "WARN" if portal not found.
+ * BadArg if forward invalid.
+ * "WARN" if portal not found.
*/
-extern void PerformPortalFetch(char *name, bool forward, int count,
- char *tag, CommandDest dest);
+extern void
+PerformPortalFetch(char *name, bool forward, int count,
+ char *tag, CommandDest dest);
/*
* PerformPortalClose --
- * Performs the POSTQUEL function CLOSE.
+ * Performs the POSTQUEL function CLOSE.
*/
-extern void PerformPortalClose(char *name, CommandDest dest);
+extern void PerformPortalClose(char *name, CommandDest dest);
-extern void PortalCleanup(Portal portal);
+extern void PortalCleanup(Portal portal);
/*
* PerformAddAttribute --
- * Performs the POSTQUEL function ADD.
+ * Performs the POSTQUEL function ADD.
*/
-extern void PerformAddAttribute(char *relationName, char *userName,
- bool inh, ColumnDef *colDef);
+extern void
+PerformAddAttribute(char *relationName, char *userName,
+ bool inh, ColumnDef * colDef);
-#endif /* COMMAND_H */
+#endif /* COMMAND_H */