diff options
Diffstat (limited to 'src/include/commands/command.h')
-rw-r--r-- | src/include/commands/command.h | 30 |
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 */ |