Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 098d204

Browse files
committed
Update query cancel message:
errmsg("canceling query due to user request or statement timeout")));
1 parent 1d734b7 commit 098d204

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/tcop/postgres.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.458 2005/09/02 21:50:54 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.459 2005/09/16 19:31:04 momjian Exp $
1212
*
1313
* NOTES
1414
* this is the "main" module of the postgres backend and
@@ -2205,7 +2205,7 @@ ProcessInterrupts(void)
22052205
DisableCatchupInterrupt();
22062206
ereport(ERROR,
22072207
(errcode(ERRCODE_QUERY_CANCELED),
2208-
errmsg("canceling query due to user request")));
2208+
errmsg("canceling query due to user request or statement timeout")));
22092209
}
22102210
/* If we get here, do nothing (probably, QueryCancelPending was reset) */
22112211
}

0 commit comments

Comments
 (0)