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/include/storage/proc.h | |
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/include/storage/proc.h')
-rw-r--r-- | src/include/storage/proc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index 612fa052be0..c3b462c9494 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -257,6 +257,7 @@ extern PGPROC *PreparedXactProcs; extern int DeadlockTimeout; extern int StatementTimeout; extern int LockTimeout; +extern int IdleInTransactionSessionTimeout; extern bool log_lock_waits; |