1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-27 00:12:01 +03:00

Fix recent breakage of query-cancel logic, see my pghackers message

of 6 Jan 2001 21:55.
This commit is contained in:
Tom Lane
2001-01-07 04:17:29 +00:00
parent 6781aa4707
commit cb7ce7d0e3
4 changed files with 76 additions and 47 deletions

View File

@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.48 2000/12/28 13:00:24 vadim Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.49 2001/01/07 04:17:29 tgl Exp $
*
* NOTES
* Globals used all over the place should be declared here and not
@@ -34,7 +34,7 @@ ProtocolVersion FrontendProtocol = PG_PROTOCOL_LATEST;
bool Noversion = false;
bool Quiet = false;
bool QueryCancel = false;
volatile bool QueryCancel = false;
int MyProcPid;
struct Port *MyProcPort;