]> git.8kb.co.uk Git - postgresql/pg_log_long_xact/commitdiff
Update the readme slightly re cancelling behaviour
authorglyn <glyn@8kb.co.uk>
Fri, 19 Dec 2014 13:34:37 +0000 (13:34 +0000)
committerglyn <glyn@8kb.co.uk>
Fri, 19 Dec 2014 13:34:37 +0000 (13:34 +0000)
README.md

index b5e9998c4242d2306ff7776d18bddfff66c37762..7c7de6addddd5857e2c825180647b064eb1aba6d 100755 (executable)
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ TEST=# SELECT public.pg_log_long_xact('1s', true, 'text');
 To make it start cancelling statements exceeding a specific duration we pass a duration as the fourth argument; the first transaction exceeding this will be cancelled 
 on each run, with blocking statements prioritised.
 
- (As of pg 9.3 there's a lock_timeout parameter that will abort any statement waiting longer than the specified number of milliseconds, which is much better.  Note that the difference here is that this function will attempt to abort the blocking statement rather than the waiting one.)
+ (As of pg 9.3 there's a lock_timeout parameter that will abort any statement waiting longer than the specified number of milliseconds, which is much better.  Note that the difference here is that this function will attempt to abort the blocking transaction rather than the waiting statement, or if there is no locking just the longest transaction.)
 
 ```sql
 TEST=# SELECT public.pg_log_long_xact('1s', true, 'text', '10 minutes');