diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-13 23:22:53 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-13 23:22:53 +0000 |
commit | 6724a5078748946b8150700125571b6ea62feca8 (patch) | |
tree | a7b3f2cf82f0bdb7cf836d1d4614a0e3b32df954 /src/include/commands/command.h | |
parent | 8c3fff7337b6389b00e8dda03a079605ee102f1b (diff) |
Change my-function-name-- to my_function_name, and optimizer renames.
Diffstat (limited to 'src/include/commands/command.h')
-rw-r--r-- | src/include/commands/command.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/commands/command.h b/src/include/commands/command.h index 8d2d065351e..8929363aa2c 100644 --- a/src/include/commands/command.h +++ b/src/include/commands/command.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * command.h-- + * command.h * prototypes for command.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: command.h,v 1.11 1998/12/18 09:09:52 vadim Exp $ + * $Id: command.h,v 1.12 1999/02/13 23:21:18 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -18,7 +18,7 @@ extern MemoryContext PortalExecutorHeapMemory; /* - * PerformPortalFetch -- + * PerformPortalFetch * Performs the POSTQUEL function FETCH. Fetches count (or all if 0) * tuples in portal with name in the forward direction iff goForward. * @@ -30,7 +30,7 @@ extern void PerformPortalFetch(char *name, bool forward, int count, char *tag, CommandDest dest); /* - * PerformPortalClose -- + * PerformPortalClose * Performs the POSTQUEL function CLOSE. */ extern void PerformPortalClose(char *name, CommandDest dest); @@ -38,7 +38,7 @@ extern void PerformPortalClose(char *name, CommandDest dest); extern void PortalCleanup(Portal portal); /* - * PerformAddAttribute -- + * PerformAddAttribute * Performs the POSTQUEL function ADD. */ extern void PerformAddAttribute(char *relationName, char *userName, |