We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent91c3613 commit9d775d8Copy full SHA for 9d775d8
src/backend/parser/parse_utilcmd.c
@@ -672,7 +672,7 @@ transformTableLikeClause(CreateStmtContext *cxt, TableLikeClause *table_like_cla
672
if (cxt->isforeign)
673
ereport(ERROR,
674
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
675
-errmsg("LIKE is not supported for foreign tables")));
+errmsg("LIKE is not supported forcreatingforeign tables")));
676
677
relation=relation_openrv(table_like_clause->relation,AccessShareLock);
678
src/backend/port/sysv_shmem.c
@@ -174,7 +174,7 @@ InternalIpcMemoryCreate(IpcMemoryKey memKey, Size size)
174
"memory configuration.") :0,
175
(errno==ENOMEM) ?
176
errhint("This error usually means that PostgreSQL's request for a shared "
177
-"memory segment exceeded your kernel's SHMALL parameter. Youmay need "
+"memory segment exceeded your kernel's SHMALL parameter. Youmight need "
178
"to reconfigure the kernel with larger SHMALL.\n"
179
"The PostgreSQL documentation contains more information about shared "
180
src/backend/postmaster/bgworker.c
@@ -255,7 +255,7 @@ BackgroundWorkerStateChange(void)
255
256
/* Log it! */
257
ereport(LOG,
258
-(errmsg("registering background worker: %s",
+(errmsg("registering background worker \"%s\"",
259
rw->rw_worker.bgw_name)));
260
261
slist_push_head(&BackgroundWorkerList,&rw->rw_lnode);
@@ -284,7 +284,7 @@ ForgetBackgroundWorker(slist_mutable_iter *cur)
284
slot->in_use= false;
285
286
287
-(errmsg("unregistering background worker: %s",
+(errmsg("unregistering background worker \"%s\"",
288
289
290
slist_delete_current(cur);
@@ -368,7 +368,7 @@ RegisterBackgroundWorker(BackgroundWorker *worker)
368
369
if (!IsUnderPostmaster)
370
371
-(errmsg("registering background worker: %s",worker->bgw_name)));
+(errmsg("registering background worker \"%s\"",worker->bgw_name)));
372
373
if (!process_shared_preload_libraries_in_progress)
374
{
src/backend/postmaster/postmaster.c
@@ -5224,7 +5224,7 @@ BackgroundWorkerInitializeConnection(char *dbname, char *username)
5224
/* it had better not gotten out of "init" mode yet */
5225
if (!IsInitProcessingMode())
5226
5227
-(errmsg("invalid processing mode inbgworker")));
+(errmsg("invalid processing mode inbackground worker")));
5228
SetProcessingMode(NormalProcessing);
5229
}
5230
src/backend/utils/adt/jsonfuncs.c
@@ -1836,7 +1836,7 @@ populate_recordset_array_element_start(void *state, bool isnull)
1836
_state->lex->token_type!=JSON_TOKEN_OBJECT_START)
1837
1838
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1839
-errmsg("must callpopulate_recordset on an array of objects")));
+errmsg("must calljson_populate_recordset on an array of objects")));
1840
1841
1842
staticvoid
src/backend/utils/misc/guc.c
@@ -1607,7 +1607,7 @@ static struct config_int ConfigureNamesInt[] =
1607
1608
1609
{"wal_receiver_timeout",PGC_SIGHUP,REPLICATION_STANDBY,
1610
-gettext_noop("Sets the maximum wait time to receive data frommaster."),
+gettext_noop("Sets the maximum wait time to receive data fromthe primary."),
1611
NULL,
1612
GUC_UNIT_MS
1613
},