diff options
author | Greg Sabino Mullane | 2011-11-26 20:46:37 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2011-11-26 20:46:37 +0000 |
commit | 8d5efef70c5efcb99a24102d0c1eaf6f8ed09efb (patch) | |
tree | 2a25c6ffdd3991e988cac450abadb14c3e7cc804 | |
parent | c0bd7ef322105ca6ff6dd369c884ec49ac936c4b (diff) |
Revert bug 92 tweak, per point from Robert Treat.
No more late night coding for me. #easilybrokenpromises
-rwxr-xr-x | check_postgres.pl | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index 3b3872d3c..273c75f5a 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -7508,14 +7508,14 @@ sub check_txn_idle { sub check_txn_time { - ## This is the same as check_txn_idle, but we want where the time is not null - ## as well as excluding any idle in transactions + ## This is the same as check_txn_idle, but we want where the + ## transaction start time is not null check_txn_idle('txntime', '', '', 'xact_start', - q{xact_start IS NOT NULL AND current_query <> '<IDLE> in transaction'}); + q{xact_start IS NOT NULL'}); return; @@ -9511,9 +9511,6 @@ Items not specifically attributed are by GSM (Greg Sabino Mullane). Better ordering of output for bloat check - make indexes as important as tables (Greg Sabino Mullane; reported by Jens Wilke) - Exclude idle in transaction queries from the txn_time action - (Greg Sabino Mullane; reported by Peter Eisentraut in bug 92) - Show the dbservice if it was used at top of same_schema output (Mike Blackwell) |