diff options
| author | Bruce Momjian <bruce@momjian.us> | 1999-05-10 00:46:32 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1999-05-10 00:46:32 +0000 |
| commit | 4853495e033245bbfc1d212ba8f2286008873f64 (patch) | |
| tree | 230beedec9848a1f462adbdf0dd1877c5d304fd5 /src/backend/bootstrap/bootparse.y | |
| parent | b7332c92438a518c7845a42f8892d2bd4a4f3258 (diff) | |
| download | postgresql-4853495e033245bbfc1d212ba8f2286008873f64.tar.gz | |
Change error messages to oids come out as %u and not %d. Change has no
real affect now.
Diffstat (limited to 'src/backend/bootstrap/bootparse.y')
| -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 5a4b0b50b5..d1808bdbb2 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.24 1999/02/13 23:14:51 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.25 1999/05/10 00:44:51 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -178,7 +178,7 @@ Boot_CreateStmt: id = heap_create_with_catalog(LexIDStr($3), tupdesc, RELKIND_RELATION, false); if (!Quiet) - printf("CREATED relation %s with OID %d\n", + printf("CREATED relation %s with OID %u\n", LexIDStr($3), id); } DO_END; |
