1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-06 07:49:08 +03:00

Get rid of last few unadorned 'permission denied' messages.

This commit is contained in:
Tom Lane
2003-01-27 00:51:06 +00:00
parent 4b833d080b
commit 33875872fd
5 changed files with 10 additions and 10 deletions

View File

@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.189 2003/01/10 22:03:28 petere Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.190 2003/01/27 00:48:28 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -973,7 +973,7 @@ ProcessUtility(Node *parsetree,
case T_CheckPointStmt:
if (!superuser())
elog(ERROR, "permission denied");
elog(ERROR, "CHECKPOINT: permission denied");
CreateCheckPoint(false, false);
break;