Skip to content

Commit 4d06811

Browse files
committed
Fix redundant wording
1 parent 393b070 commit 4d06811

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/adt/misc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ pg_terminate_backend(PG_FUNCTION_ARGS)
173173
if (r == SIGNAL_BACKEND_NOPERMISSION)
174174
ereport(ERROR,
175175
(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
176-
(errmsg("must be superuser or have the same role to terminate backends running in other server processes"))));
176+
(errmsg("must be superuser or have the same role to terminate other server processes"))));
177177

178178
PG_RETURN_BOOL(r == SIGNAL_BACKEND_SUCCESS);
179179
}

0 commit comments

Comments
 (0)