diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-03-16 11:30:45 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-03-16 11:30:45 -0400 |
commit | c6dda1f48e573cc60fe25d8d470a05bfabed0252 (patch) | |
tree | 0c04e3abde478ad77e2237ec7211c71b9116c997 /src/backend/storage/lmgr/proc.c | |
parent | 5871b88487cfd07966e2ce08609a4d6d5ee9718e (diff) | |
download | postgresql-c6dda1f48e573cc60fe25d8d470a05bfabed0252.tar.gz postgresql-c6dda1f48e573cc60fe25d8d470a05bfabed0252.zip |
Add idle_in_transaction_session_timeout.
Vik Fearing, reviewed by Stéphane Schildknecht and me, and revised
slightly by me.
Diffstat (limited to 'src/backend/storage/lmgr/proc.c')
-rw-r--r-- | src/backend/storage/lmgr/proc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/storage/lmgr/proc.c b/src/backend/storage/lmgr/proc.c index 74ef4197986..a66e07b7665 100644 --- a/src/backend/storage/lmgr/proc.c +++ b/src/backend/storage/lmgr/proc.c @@ -58,6 +58,7 @@ int DeadlockTimeout = 1000; int StatementTimeout = 0; int LockTimeout = 0; +int IdleInTransactionSessionTimeout = 0; bool log_lock_waits = false; /* Pointer to this process's PGPROC and PGXACT structs, if any */ |