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/nodes/memnodes.h | |
parent | 8c3fff7337b6389b00e8dda03a079605ee102f1b (diff) |
Change my-function-name-- to my_function_name, and optimizer renames.
Diffstat (limited to 'src/include/nodes/memnodes.h')
-rw-r--r-- | src/include/nodes/memnodes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/nodes/memnodes.h b/src/include/nodes/memnodes.h index 4be4fe42620..0bd7f9266ae 100644 --- a/src/include/nodes/memnodes.h +++ b/src/include/nodes/memnodes.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * memnodes.h-- + * memnodes.h * POSTGRES memory context node definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: memnodes.h,v 1.9 1999/02/06 16:50:30 wieck Exp $ + * $Id: memnodes.h,v 1.10 1999/02/13 23:21:38 momjian Exp $ * * XXX the typedefs in this file are different from the other ???nodes.h; * they are pointers to structures instead of the structures themselves. @@ -23,7 +23,7 @@ #include <nodes/nodes.h> /* - * MemoryContext -- + * MemoryContext * A logical context in which memory allocations occur. * * The types of memory contexts can be thought of as members of the @@ -91,7 +91,7 @@ typedef struct PortalHeapMemoryData } *PortalHeapMemory; /* - * MemoryContextIsValid -- + * MemoryContextIsValid * True iff memory context is valid. */ #define MemoryContextIsValid(context) \ |