summaryrefslogtreecommitdiff
path: root/src/backend/utils/error
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-02-13 23:22:53 +0000
committerBruce Momjian <bruce@momjian.us>1999-02-13 23:22:53 +0000
commit6724a5078748946b8150700125571b6ea62feca8 (patch)
treea7b3f2cf82f0bdb7cf836d1d4614a0e3b32df954 /src/backend/utils/error
parent8c3fff7337b6389b00e8dda03a079605ee102f1b (diff)
downloadpostgresql-6724a5078748946b8150700125571b6ea62feca8.tar.gz
Change my-function-name-- to my_function_name, and optimizer renames.
Diffstat (limited to 'src/backend/utils/error')
-rw-r--r--src/backend/utils/error/assert.c4
-rw-r--r--src/backend/utils/error/elog.c8
-rw-r--r--src/backend/utils/error/exc.c6
-rw-r--r--src/backend/utils/error/excabort.c4
-rw-r--r--src/backend/utils/error/excid.c16
-rw-r--r--src/backend/utils/error/format.c4
6 files changed, 21 insertions, 21 deletions
diff --git a/src/backend/utils/error/assert.c b/src/backend/utils/error/assert.c
index 5f3312d9ea..794b59bd7b 100644
--- a/src/backend/utils/error/assert.c
+++ b/src/backend/utils/error/assert.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * assert.c--
+ * assert.c
* Assert code.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/error/assert.c,v 1.12 1998/09/01 04:33:05 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/error/assert.c,v 1.13 1999/02/13 23:19:47 momjian Exp $
*
* NOTE
* This should eventually work with elog(), dlog(), etc.
diff --git a/src/backend/utils/error/elog.c b/src/backend/utils/error/elog.c
index 473fc06c3e..5909bedec0 100644
--- a/src/backend/utils/error/elog.c
+++ b/src/backend/utils/error/elog.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * elog.c--
+ * elog.c
* error logger
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.38 1999/01/23 22:27:29 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.39 1999/02/13 23:19:47 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -53,7 +53,7 @@ static int Err_file = -1;
static int ElogDebugIndentLevel = 0;
/*
- * elog --
+ * elog
* Old error logging function.
*/
void
@@ -165,7 +165,7 @@ elog(int lev, const char *fmt,...)
* front-end program, write to it first. This is important because
* there's a bug in the socket code on ultrix. If the front end has
* gone away (so the channel to it has been closed at the other end),
- * then writing here can cause this backend to exit without warning --
+ * then writing here can cause this backend to exit without warning
* that is, write() does an exit(). In this case, our only hope of
* finding out what's going on is if Err_file was set to some disk
* log. This is a major pain.
diff --git a/src/backend/utils/error/exc.c b/src/backend/utils/error/exc.c
index 5fc7b2188a..aa556a6247 100644
--- a/src/backend/utils/error/exc.c
+++ b/src/backend/utils/error/exc.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * exc.c--
+ * exc.c
* POSTGRES exception handling code.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.23 1998/09/01 04:33:08 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.24 1999/02/13 23:19:48 momjian Exp $
*
* NOTE
* XXX this code needs improvement--check for state violations and
@@ -48,7 +48,7 @@ extern char *ProgramName;
*/
/*
- * EnableExceptionHandling --
+ * EnableExceptionHandling
* Enables/disables the exception handling system.
*
* Note:
diff --git a/src/backend/utils/error/excabort.c b/src/backend/utils/error/excabort.c
index f956c42af0..c780ad7953 100644
--- a/src/backend/utils/error/excabort.c
+++ b/src/backend/utils/error/excabort.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * excabort.c--
+ * excabort.c
* Default exception abort code.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excabort.c,v 1.5 1998/05/29 17:00:16 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excabort.c,v 1.6 1999/02/13 23:19:48 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/backend/utils/error/excid.c b/src/backend/utils/error/excid.c
index b75a6f46b0..bc92609e2b 100644
--- a/src/backend/utils/error/excid.c
+++ b/src/backend/utils/error/excid.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * excid.c--
+ * excid.c
* POSTGRES known exception identifier code.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excid.c,v 1.4 1997/09/08 02:31:31 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excid.c,v 1.5 1999/02/13 23:19:48 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -22,19 +22,19 @@
/*
- * FailedAssertion --
+ * FailedAssertion
* Indicates an Assert(...) failed.
*/
Exception FailedAssertion = {"Failed Assertion"};
/*
- * BadState --
+ * BadState
* Indicates a function call request is inconsistent with module state.
*/
Exception BadState = {"Bad State for Function Call"};
/*
- * BadArg --
+ * BadArg
* Indicates a function call argument or arguments is out-of-bounds.
*/
Exception BadArg = {"Bad Argument to Function Call"};
@@ -44,19 +44,19 @@ Exception BadArg = {"Bad Argument to Function Call"};
*****************************************************************************/
/*
- * BadAllocSize --
+ * BadAllocSize
* Indicates that an allocation request is of unreasonable size.
*/
Exception BadAllocSize = {"Too Large Allocation Request"};
/*
- * ExhaustedMemory --
+ * ExhaustedMemory
* Indicates an dynamic memory allocation failed.
*/
Exception ExhaustedMemory = {"Memory Allocation Failed"};
/*
- * Unimplemented --
+ * Unimplemented
* Indicates a function call request requires unimplemented code.
*/
Exception Unimplemented = {"Unimplemented Functionality"};
diff --git a/src/backend/utils/error/format.c b/src/backend/utils/error/format.c
index 4cb92670be..dcc27cec02 100644
--- a/src/backend/utils/error/format.c
+++ b/src/backend/utils/error/format.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * format.c--
+ * format.c
* a wrapper around code that does what vsprintf does.
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/format.c,v 1.9 1999/01/17 03:04:52 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/format.c,v 1.10 1999/02/13 23:19:49 momjian Exp $
*
*-------------------------------------------------------------------------
*/