diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-22 19:55:44 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-22 19:55:44 +0000 |
commit | 1e70c1fe5d1211cb8d697b2cb97b052770e920d8 (patch) | |
tree | 040c21561c28b5672f53577388782b272f94c381 /src/backend | |
parent | 7fe29ecefcc4e71350c72aee608d3e4f5f60033d (diff) | |
download | postgresql-1e70c1fe5d1211cb8d697b2cb97b052770e920d8.tar.gz postgresql-1e70c1fe5d1211cb8d697b2cb97b052770e920d8.zip |
comments cleanup.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 18 | ||||
-rw-r--r-- | src/backend/nodes/freefuncs.c | 12 | ||||
-rw-r--r-- | src/backend/utils/init/postinit.c | 11 |
3 files changed, 16 insertions, 25 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index c0e072bc359..8810ae005a2 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.73 1999/02/18 00:49:12 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.74 1999/02/22 19:55:42 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1002,9 +1002,9 @@ _copyArrayRef(ArrayRef *from) * ---------------- */ /* - ** when you change this, also make sure to fix up xfunc_copyRelOptInfo in - ** planner/path/xfunc.c accordingly!!! - ** -- JMH, 8/2/93 + * when you change this, also make sure to fix up xfunc_copyRelOptInfo in + * planner/path/xfunc.c accordingly!!! + * -- JMH, 8/2/93 */ static RelOptInfo * _copyRelOptInfo(RelOptInfo * from) @@ -1469,9 +1469,8 @@ _copyStream(Stream *from) return newnode; } -/* **************** - * parsenodes.h routines have no copy functions - * **************** +/* + * parsenodes.h routines have no copy functions */ static TargetEntry * @@ -1604,9 +1603,8 @@ _copyQuery(Query *from) } -/* **************** - * mnodes.h routines have no copy functions - * **************** +/* + * mnodes.h routines have no copy functions */ /* **************************************************************** diff --git a/src/backend/nodes/freefuncs.c b/src/backend/nodes/freefuncs.c index 0c95880fcd5..dd3f040ad45 100644 --- a/src/backend/nodes/freefuncs.c +++ b/src/backend/nodes/freefuncs.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/Attic/freefuncs.c,v 1.13 1999/02/18 00:49:14 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/Attic/freefuncs.c,v 1.14 1999/02/22 19:55:42 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1045,9 +1045,8 @@ _freeStream(Stream *node) pfree(node); } -/* **************** - * parsenodes.h routines have no free functions - * **************** +/* + * parsenodes.h routines have no free functions */ static void @@ -1134,9 +1133,8 @@ _freeQuery(Query *node) } -/* **************** - * mnodes.h routines have no free functions - * **************** +/* + * mnodes.h routines have no free functions */ /* **************************************************************** diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index 0d60403e322..e93480da1db 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.38 1999/02/19 06:06:10 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.39 1999/02/22 19:55:43 momjian Exp $ * * NOTES * InitPostgres() is the function called from PostgresMain @@ -515,19 +515,14 @@ InitPostgres(char *name) /* database name */ } /* - * ******************************** - * - * - * - * code after this point assumes we are in the proper directory! + * Code after this point assumes we are in the proper directory! * * So, how do we implement alternate locations for databases? There are * two possible locations for tables and we need to look in * DataDir/pg_database to find the true location of an individual * database. We can brute-force it as done in InitMyDatabaseInfo(), or * we can be patient and wait until we open pg_database gracefully. - * Will try that, but may not work... - thomas 1997-11-01 ******************************** - * + * Will try that, but may not work... - thomas 1997-11-01 */ /* Does not touch files (?) - thomas 1997-11-01 */ |