diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-20 15:25:29 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-20 15:25:29 +0000 |
commit | 1add01bb5bbb32977c2bd0a30633d2f36c303e9c (patch) | |
tree | c6070704a03de268826629bbe6b59f4a90617f87 /src/backend/bootstrap | |
parent | fa11e5e994a020973a601f47fe7176ad251dd5e3 (diff) |
No wonder the Linux version kept screwing up...err() was fixed in
the wrong file...
Pointed out by: Philip Plane <P.J.Plane@massey.ac.nz>
Diffstat (limited to 'src/backend/bootstrap')
-rw-r--r-- | src/backend/bootstrap/bootparse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index 0362b302b16..c0483f278a8 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.1.1.1 1996/07/09 06:21:14 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.1.1.1.2.1 1996/08/20 15:25:29 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -175,7 +175,7 @@ InsertStmt: elog(WARN,"incorrect number of values for tuple"); if (reldesc == (Relation)NULL) { elog(WARN,"must OPEN RELATION before INSERT\n"); - err(); + err_out(); } if (DebugMode) puts("Insert Begin"); |