summaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorBruce Momjian1999-02-13 23:22:53 +0000
committerBruce Momjian1999-02-13 23:22:53 +0000
commit6724a5078748946b8150700125571b6ea62feca8 (patch)
treea7b3f2cf82f0bdb7cf836d1d4614a0e3b32df954 /src/bin
parent8c3fff7337b6389b00e8dda03a079605ee102f1b (diff)
Change my-function-name-- to my_function_name, and optimizer renames.
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/pg_dump/common.c6
-rw-r--r--src/bin/pg_dump/pg_dump.c6
-rw-r--r--src/bin/pg_encoding/pg_encoding.c4
-rw-r--r--src/bin/pg_id/pg_id.c4
-rw-r--r--src/bin/pg_version/pg_version.c4
-rw-r--r--src/bin/pgtclsh/pgtclAppInit.c6
-rw-r--r--src/bin/pgtclsh/pgtkAppInit.c6
-rw-r--r--src/bin/psql/psql.c4
-rw-r--r--src/bin/psql/psqlHelp.h4
-rw-r--r--src/bin/psql/stringutils.c4
-rw-r--r--src/bin/psql/stringutils.h4
11 files changed, 26 insertions, 26 deletions
diff --git a/src/bin/pg_dump/common.c b/src/bin/pg_dump/common.c
index 11b726efd26..7cb1242e1dd 100644
--- a/src/bin/pg_dump/common.c
+++ b/src/bin/pg_dump/common.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * common.c--
+ * common.c
* common routines between pg_dump and pg4_dump
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/pg_dump/common.c,v 1.28 1998/12/13 23:41:32 thomas Exp $
+ * $Header: /cvsroot/pgsql/src/bin/pg_dump/common.c,v 1.29 1999/02/13 23:20:22 momjian Exp $
*
* Modifications - 6/12/96 - dave@bensoft.com - version 1.13.dhb.2
*
@@ -101,7 +101,7 @@ findOprByOid(OprInfo *oprinfo, int numOprs, const char *oid)
/*
- * findParentsByOid --
+ * findParentsByOid
* given the oid of a class, return the names of its parent classes
* and assign the number of parents to the last argument.
*
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index 4ac2b852a34..b132be2a800 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * pg_dump.c--
+ * pg_dump.c
* pg_dump is an utility for dumping out a postgres database
* into a script file.
*
@@ -21,7 +21,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.101 1999/02/08 01:46:28 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.102 1999/02/13 23:20:23 momjian Exp $
*
* Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
*
@@ -2952,7 +2952,7 @@ dumpIndices(FILE *fout, IndInfo *indinfo, int numIndices,
}
/*
- * dumpTuples --
+ * dumpTuples
* prints out the tuples in ASCII representation. The output is a valid
* input to COPY FROM stdin.
*
diff --git a/src/bin/pg_encoding/pg_encoding.c b/src/bin/pg_encoding/pg_encoding.c
index 4ab8cb02552..a6b16e0d6f4 100644
--- a/src/bin/pg_encoding/pg_encoding.c
+++ b/src/bin/pg_encoding/pg_encoding.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * pg_encoding.c--
+ * pg_encoding.c
*
*
* Copyright (c) 1998, PostgreSQL development group
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/pg_encoding/Attic/pg_encoding.c,v 1.2 1998/09/01 04:33:48 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/pg_encoding/Attic/pg_encoding.c,v 1.3 1999/02/13 23:20:26 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/bin/pg_id/pg_id.c b/src/bin/pg_id/pg_id.c
index ee2cb020a23..d14d653c60e 100644
--- a/src/bin/pg_id/pg_id.c
+++ b/src/bin/pg_id/pg_id.c
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * pg_id.c--
+ * pg_id.c
* Print the user ID for the login name passed as argument,
* or the real user ID of the caller if no argument. If the
* login name doesn't exist, print "NOUSER" and exit 1.
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/pg_id.c,v 1.7 1999/01/17 06:19:10 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/pg_id.c,v 1.8 1999/02/13 23:20:29 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/bin/pg_version/pg_version.c b/src/bin/pg_version/pg_version.c
index c2ef7491f79..72ab87e1a8c 100644
--- a/src/bin/pg_version/pg_version.c
+++ b/src/bin/pg_version/pg_version.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * pg_version.c--
+ * pg_version.c
*
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/pg_version/Attic/pg_version.c,v 1.10 1998/09/01 03:27:25 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/pg_version/Attic/pg_version.c,v 1.11 1999/02/13 23:20:32 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/bin/pgtclsh/pgtclAppInit.c b/src/bin/pgtclsh/pgtclAppInit.c
index d121d28a14a..57b41589410 100644
--- a/src/bin/pgtclsh/pgtclAppInit.c
+++ b/src/bin/pgtclsh/pgtclAppInit.c
@@ -1,5 +1,5 @@
/*
- * pgtclAppInit.c --
+ * pgtclAppInit.c
*
* a skeletal Tcl_AppInit that provides pgtcl initialization
* to create a tclsh that can talk to pglite backends
@@ -30,7 +30,7 @@ int *tclDummyMathPtr = (int *) matherr;
/*
*----------------------------------------------------------------------
*
- * main --
+ * main
*
* This is the main program for the application.
*
@@ -56,7 +56,7 @@ main(int argc, char **argv)
/*
*----------------------------------------------------------------------
*
- * Tcl_AppInit --
+ * Tcl_AppInit
*
* This procedure performs application-specific initialization.
* Most applications, especially those that incorporate additional
diff --git a/src/bin/pgtclsh/pgtkAppInit.c b/src/bin/pgtclsh/pgtkAppInit.c
index 0bf685bd1a3..46af3ffaa9f 100644
--- a/src/bin/pgtclsh/pgtkAppInit.c
+++ b/src/bin/pgtclsh/pgtkAppInit.c
@@ -1,5 +1,5 @@
/*
- * pgtkAppInit.c --
+ * pgtkAppInit.c
*
* a skeletal Tcl_AppInit that provides pgtcl initialization
* to create a tclsh that can talk to pglite backends
@@ -29,7 +29,7 @@ int *tclDummyMathPtr = (int *) matherr;
/*
*----------------------------------------------------------------------
*
- * main --
+ * main
*
* This is the main program for the application.
*
@@ -55,7 +55,7 @@ main(int argc, char **argv)
/*
*----------------------------------------------------------------------
*
- * Tcl_AppInit --
+ * Tcl_AppInit
*
* This procedure performs application-specific initialization.
* Most applications, especially those that incorporate additional
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c
index 88e3ea40062..7d863a5e831 100644
--- a/src/bin/psql/psql.c
+++ b/src/bin/psql/psql.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * psql.c--
+ * psql.c
* an interactive front-end to postgreSQL
*
* Copyright (c) 1996, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.169 1999/02/07 02:56:53 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.170 1999/02/13 23:20:38 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/bin/psql/psqlHelp.h b/src/bin/psql/psqlHelp.h
index 570f0226e34..9be1fdadd72 100644
--- a/src/bin/psql/psqlHelp.h
+++ b/src/bin/psql/psqlHelp.h
@@ -1,11 +1,11 @@
/*-------------------------------------------------------------------------
*
- * psqlHelp.h--
+ * psqlHelp.h
* Help for query language syntax
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: psqlHelp.h,v 1.58 1999/02/02 18:51:24 momjian Exp $
+ * $Id: psqlHelp.h,v 1.59 1999/02/13 23:20:40 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/bin/psql/stringutils.c b/src/bin/psql/stringutils.c
index 2149028a428..bf6bece7dab 100644
--- a/src/bin/psql/stringutils.c
+++ b/src/bin/psql/stringutils.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * stringutils.c--
+ * stringutils.c
* simple string manipulation routines
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/psql/stringutils.c,v 1.15 1998/09/01 04:33:54 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/stringutils.c,v 1.16 1999/02/13 23:20:41 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/bin/psql/stringutils.h b/src/bin/psql/stringutils.h
index bdd3fa46415..84c8c77777f 100644
--- a/src/bin/psql/stringutils.h
+++ b/src/bin/psql/stringutils.h
@@ -1,11 +1,11 @@
/*-------------------------------------------------------------------------
*
- * stringutils.h--
+ * stringutils.h
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: stringutils.h,v 1.7 1998/09/01 04:33:56 momjian Exp $
+ * $Id: stringutils.h,v 1.8 1999/02/13 23:20:42 momjian Exp $
*
*-------------------------------------------------------------------------
*/