mirror of
https://github.com/postgres/postgres.git
synced 2025-11-15 03:41:20 +03:00
Capitalization fixes
This commit is contained in:
@@ -952,7 +952,7 @@ MarkBufferDirty(Buffer buffer)
|
||||
volatile BufferDesc *bufHdr;
|
||||
|
||||
if (!BufferIsValid(buffer))
|
||||
elog(ERROR, "bad buffer id: %d", buffer);
|
||||
elog(ERROR, "bad buffer ID: %d", buffer);
|
||||
|
||||
if (BufferIsLocal(buffer))
|
||||
{
|
||||
@@ -2198,7 +2198,7 @@ ReleaseBuffer(Buffer buffer)
|
||||
volatile BufferDesc *bufHdr;
|
||||
|
||||
if (!BufferIsValid(buffer))
|
||||
elog(ERROR, "bad buffer id: %d", buffer);
|
||||
elog(ERROR, "bad buffer ID: %d", buffer);
|
||||
|
||||
ResourceOwnerForgetBuffer(CurrentResourceOwner, buffer);
|
||||
|
||||
@@ -2270,7 +2270,7 @@ SetBufferCommitInfoNeedsSave(Buffer buffer)
|
||||
volatile BufferDesc *bufHdr;
|
||||
|
||||
if (!BufferIsValid(buffer))
|
||||
elog(ERROR, "bad buffer id: %d", buffer);
|
||||
elog(ERROR, "bad buffer ID: %d", buffer);
|
||||
|
||||
if (BufferIsLocal(buffer))
|
||||
{
|
||||
|
||||
@@ -323,7 +323,7 @@ SharedInvalBackendInit(bool sendOnly)
|
||||
/* register exit routine to mark my entry inactive at exit */
|
||||
on_shmem_exit(CleanupInvalidationState, PointerGetDatum(segP));
|
||||
|
||||
elog(DEBUG4, "my backend id is %d", MyBackendId);
|
||||
elog(DEBUG4, "my backend ID is %d", MyBackendId);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -996,7 +996,7 @@ ProcSleep(LOCALLOCK *locallock, LockMethod lockMethodTable)
|
||||
{
|
||||
int pid = autovac->pid;
|
||||
|
||||
elog(DEBUG2, "sending cancel to blocking autovacuum pid = %d",
|
||||
elog(DEBUG2, "sending cancel to blocking autovacuum PID %d",
|
||||
pid);
|
||||
|
||||
/* don't hold the lock across the kill() syscall */
|
||||
|
||||
@@ -54,7 +54,7 @@ smgrout(PG_FUNCTION_ARGS)
|
||||
char *s;
|
||||
|
||||
if (i >= NStorageManagers || i < 0)
|
||||
elog(ERROR, "invalid storage manager id: %d", i);
|
||||
elog(ERROR, "invalid storage manager ID: %d", i);
|
||||
|
||||
s = pstrdup(StorageManager[i].smgr_name);
|
||||
PG_RETURN_CSTRING(s);
|
||||
|
||||
Reference in New Issue
Block a user