diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/transam/slru.c | 15 | ||||
-rw-r--r-- | src/backend/port/sysv_shmem.c | 4 | ||||
-rw-r--r-- | src/pl/plpython/plpython.c | 8 | ||||
-rw-r--r-- | src/tutorial/beard.c | 12 |
4 files changed, 19 insertions, 20 deletions
diff --git a/src/backend/access/transam/slru.c b/src/backend/access/transam/slru.c index 2079d08b1e6..5ab4c2b940e 100644 --- a/src/backend/access/transam/slru.c +++ b/src/backend/access/transam/slru.c @@ -41,7 +41,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/backend/access/transam/slru.c,v 1.34 2006/01/21 04:38:21 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/slru.c,v 1.35 2006/03/01 06:30:32 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -752,42 +752,41 @@ SlruReportIOError(SlruCtl ctl, int pageno, TransactionId xid) ereport(ERROR, (errcode_for_file_access(), errmsg("could not access status of transaction %u", xid), - errdetail("could not open file \"%s\": %m", - path))); + errdetail("Could not open file \"%s\": %m.", path))); break; case SLRU_SEEK_FAILED: ereport(ERROR, (errcode_for_file_access(), errmsg("could not access status of transaction %u", xid), - errdetail("could not seek in file \"%s\" to offset %u: %m", + errdetail("Could not seek in file \"%s\" to offset %u: %m.", path, offset))); break; case SLRU_READ_FAILED: ereport(ERROR, (errcode_for_file_access(), errmsg("could not access status of transaction %u", xid), - errdetail("could not read from file \"%s\" at offset %u: %m", + errdetail("Could not read from file \"%s\" at offset %u: %m.", path, offset))); break; case SLRU_WRITE_FAILED: ereport(ERROR, (errcode_for_file_access(), errmsg("could not access status of transaction %u", xid), - errdetail("could not write to file \"%s\" at offset %u: %m", + errdetail("Could not write to file \"%s\" at offset %u: %m.", path, offset))); break; case SLRU_FSYNC_FAILED: ereport(ERROR, (errcode_for_file_access(), errmsg("could not access status of transaction %u", xid), - errdetail("could not fsync file \"%s\": %m", + errdetail("Could not fsync file \"%s\": %m.", path))); break; case SLRU_CLOSE_FAILED: ereport(ERROR, (errcode_for_file_access(), errmsg("could not access status of transaction %u", xid), - errdetail("could not close file \"%s\": %m", + errdetail("Could not close file \"%s\": %m.", path))); break; default: diff --git a/src/backend/port/sysv_shmem.c b/src/backend/port/sysv_shmem.c index 3092ca2a377..a2ea0433b78 100644 --- a/src/backend/port/sysv_shmem.c +++ b/src/backend/port/sysv_shmem.c @@ -10,7 +10,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/port/sysv_shmem.c,v 1.44 2005/10/15 02:49:22 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/port/sysv_shmem.c,v 1.45 2006/03/01 06:30:32 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -426,7 +426,7 @@ PGSharedMemoryReAttach(void) UsedShmemSegAddr = origUsedShmemSegAddr; #endif - elog(DEBUG3, "Attaching to %p", UsedShmemSegAddr); + elog(DEBUG3, "attaching to %p", UsedShmemSegAddr); hdr = (void *) PGSharedMemoryAttach((IpcMemoryKey) UsedShmemSegID, &shmid); if (hdr == NULL) elog(FATAL, "could not reattach to shared memory (key=%d, addr=%p): %m", diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c index cea843f343a..9c834584a90 100644 --- a/src/pl/plpython/plpython.c +++ b/src/pl/plpython/plpython.c @@ -29,7 +29,7 @@ * MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.73 2006/02/28 20:56:14 neilc Exp $ + * $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.74 2006/03/01 06:30:32 neilc Exp $ * ********************************************************************* */ @@ -404,7 +404,7 @@ PLy_trigger_handler(FunctionCallInfo fcinfo, PLyProcedure * proc) ereport(ERROR, (errcode(ERRCODE_DATA_EXCEPTION), errmsg("unexpected return value from trigger procedure"), - errdetail("expected None or a String"))); + errdetail("Expected None or a String."))); srv = PyString_AsString(plrv); if (pg_strcasecmp(srv, "SKIP") == 0) @@ -428,7 +428,7 @@ PLy_trigger_handler(FunctionCallInfo fcinfo, PLyProcedure * proc) ereport(ERROR, (errcode(ERRCODE_DATA_EXCEPTION), errmsg("unexpected return value from trigger procedure"), - errdetail("expected None, \"OK\", \"SKIP\", or \"MODIFY\""))); + errdetail("Expected None, \"OK\", \"SKIP\", or \"MODIFY\"."))); } } } @@ -770,7 +770,7 @@ PLy_function_handler(FunctionCallInfo fcinfo, PLyProcedure * proc) ereport(ERROR, (errcode(ERRCODE_DATATYPE_MISMATCH), errmsg("invalid return value from plpython function"), - errdetail("Functions returning type \"void\" must return \"None\"."))); + errdetail("Functions returning type \"void\" must return None."))); fcinfo->isnull = false; rv = (Datum) 0; diff --git a/src/tutorial/beard.c b/src/tutorial/beard.c index f31a1197709..9048b2f77b1 100644 --- a/src/tutorial/beard.c +++ b/src/tutorial/beard.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/tutorial/beard.c,v 1.13 2005/10/15 02:49:52 momjian Exp $ + * $PostgreSQL: pgsql/src/tutorial/beard.c,v 1.14 2006/03/01 06:30:32 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -38,10 +38,10 @@ beard(Oid picture) ObjectIdGetDatum(picture), Int32GetDatum(INV_READ))); if (pic_fd < 0) - elog(ERROR, "Cannot access picture large object"); + elog(ERROR, "could not access picture large object"); if (lo_read(pic_fd, (char *) &ihdr, sizeof(ihdr)) != sizeof(ihdr)) - elog(ERROR, "Picture large object corrupted"); + elog(ERROR, "picture large object corrupted"); beardOffset = (ihdr.size / 3) * 2; @@ -51,19 +51,19 @@ beard(Oid picture) beard = DatumGetObjectId(DirectFunctionCall1(lo_creat, Int32GetDatum(INV_MD))); if (beard == InvalidOid) - elog(ERROR, "Cannot create new large object"); + elog(ERROR, "could not create new large object"); beard_fd = DatumGetInt32(DirectFunctionCall2(lo_open, ObjectIdGetDatum(beard), Int32GetDatum(INV_WRITE))); if (beard_fd < 0) - elog(ERROR, "Cannot access beard large object"); + elog(ERROR, "could not access beard large object"); if (DatumGetInt32(DirectFunctionCall3(lo_lseek, Int32GetDatum(pic_fd), Int32GetDatum(beardOffset), Int32GetDatum(SEEK_SET))) < 0) - elog(ERROR, "Cannot seek in picture large object"); + elog(ERROR, "could not seek in picture large object"); while ((cc = lo_read(pic_fd, buf, BUFSIZE)) > 0) { |