Skip to content

Commit eed5488

Browse files
committed
Fix grammar in error message
While at it, make ellipses formatting consistent when describing SQL statements. Ekaterina Kiryanova and Alexander Lakhin Reviewed by myself and Álvaro Herrera Discussion: https://www.postgresql.org/message-id/eed5cec0-a542-53da-6a5e-7789c6ed9817%40postgrespro.ru Backpatch only the grammar fix to v15
1 parent d068b41 commit eed5488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/postmaster/bgworker.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ SanityCheckBackgroundWorker(BackgroundWorker *worker, int elevel)
663663
{
664664
ereport(elevel,
665665
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
666-
errmsg("background worker \"%s\": background worker without shared memory access are not supported",
666+
errmsg("background worker \"%s\": background workers without shared memory access are not supported",
667667
worker->bgw_name)));
668668
return false;
669669
}

0 commit comments

Comments
 (0)