diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-22 23:30:39 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-22 23:30:39 +0000 |
| commit | c72839d5be17911be03632f92c75624aea766af4 (patch) | |
| tree | ceaa9bd45a4fbd9003f468be568d28e462db95e8 /src/backend/bootstrap/bootparse.y | |
| parent | 56f87688c437ac18ba245599633c391bfc0241a8 (diff) | |
| download | postgresql-c72839d5be17911be03632f92c75624aea766af4.tar.gz | |
Error message editing in backend/bootstrap, /lib, /nodes, /port.
Diffstat (limited to 'src/backend/bootstrap/bootparse.y')
| -rw-r--r-- | src/backend/bootstrap/bootparse.y | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index 2f64414aee..7e6c1600fe 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.58 2003/05/28 16:03:55 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.59 2003/07/22 23:30:37 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -155,7 +155,7 @@ Boot_CreateStmt: { do_start(); numattr = 0; - elog(DEBUG4, "creating%s%s relation %s...", + elog(DEBUG4, "creating%s%s relation %s", $2 ? " bootstrap" : "", $3 ? " shared" : "", LexIDStr($5)); @@ -210,9 +210,9 @@ Boot_InsertStmt: { do_start(); if ($2) - elog(DEBUG4, "inserting row with oid %u...", $2); + elog(DEBUG4, "inserting row with oid %u", $2); else - elog(DEBUG4, "inserting row..."); + elog(DEBUG4, "inserting row"); num_columns_read = 0; } LPAREN boot_tuplelist RPAREN @@ -302,7 +302,7 @@ boot_typelist: boot_type_thing: boot_ident EQUALS boot_ident { - if(++numattr > MAXATTR) + if (++numattr > MAXATTR) elog(FATAL, "too many columns"); DefineAttr(LexIDStr($1),LexIDStr($3),numattr-1); } |
