ruby-pg-extras 4.12.1 → 4.12.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 11c950416b0ecd45e07b683bb3a2fc0c502f68d79797aba489f1a331f425f135
4
- data.tar.gz: 0f1f963c3d4b2bccb3e9026eb2ad38042304f29b691f6d580ad1710cdc083fe9
3
+ metadata.gz: 5e8b0284d78318c326519ebc03c56d7bb0238ac11d002dce652e82c5b071a3af
4
+ data.tar.gz: d3138af7064138aba53a119169ae2d16be12221ebf3b5fc632be84d806b586e4
5
5
  SHA512:
6
- metadata.gz: 1c414dc98101db1d534b3b847abaa9b87868c1c25c3150db2ca4936ef846d78fb3f2500606be6e31abc351c22a5fd41294aa2481855d5933934e628e55172221
7
- data.tar.gz: 734625e8df7bb3bc6ffb0886b7fe60caefc49e3ffa8b06455c2fffb92815b007db2d93887601217f552ca98a49160128dbb57a28aedb8704a208fed724410693
6
+ metadata.gz: 287bb0db06f234fe8904dce580586681b5544aa23181bed9237bb09b567a1255a7efbe9f60a9d51c1d30b6d3e476ef9cd1cf064aa2a8b611ab88bd9f5b36f677
7
+ data.tar.gz: fef3615f8cc53584398b12d64fee13afc68d2999b526f8bc4d8143fdc6b52b717178a22813571fee1eca664b0a5ed3974037c86eb0789e8281a8701cda87f637
data/README.md CHANGED
@@ -253,7 +253,7 @@ This command provides information on the efficiency of indexes, represented as w
253
253
 
254
254
  ```ruby
255
255
 
256
- RubyPgExtras.locks
256
+ RubyPgExtras.locks(args: { limit: 20 })
257
257
 
258
258
  procpid | relname | transactionid | granted | query_snippet | mode | age | application |
259
259
  ---------+---------+---------------+---------+-----------------------+------------------------------------------------------
@@ -31,6 +31,7 @@ module RubyPgExtras
31
31
  calls: { limit: 10 },
32
32
  calls_legacy: { limit: 10 },
33
33
  long_running_queries: { threshold: "500 milliseconds" },
34
+ locks: { limit: 20 },
34
35
  outliers: { limit: 10 },
35
36
  outliers_legacy: { limit: 10 },
36
37
  buffercache_stats: { limit: 10 },
@@ -15,4 +15,6 @@ OUTER JOIN pg_class
15
15
  WHERE pg_stat_activity.query <> '<insufficient privilege>'
16
16
  AND pg_locks.pid = pg_stat_activity.pid
17
17
  AND pg_locks.mode IN ('ExclusiveLock', 'AccessExclusiveLock', 'RowExclusiveLock')
18
- AND pg_stat_activity.pid <> pg_backend_pid() order by query_start;
18
+ AND pg_stat_activity.pid <> pg_backend_pid()
19
+ ORDER BY query_start
20
+ LIMIT %{limit};
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyPgExtras
4
- VERSION = "4.12.1"
4
+ VERSION = "4.12.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-pg-extras
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.12.1
4
+ version: 4.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - pawurb
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-16 00:00:00.000000000 Z
11
+ date: 2023-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg