ruby-pg-extras 5.6.4 → 5.6.6

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: a728972344534c857c0e29497db20350a53f349e0642eea684c802e7e33f883d
4
- data.tar.gz: 52308c26cf8a0fd2078d65467ecd1ab83a2014fbee99c00d1a9d1a33dff7d159
3
+ metadata.gz: 5a20be6fee27876d0c8e5b9f991cc6d24cf8e82b82712a26a7ef378ddf806f58
4
+ data.tar.gz: 43056660e20b65d08376094e02915f68ac4c8774a1048b45d64559250395e91a
5
5
  SHA512:
6
- metadata.gz: 44054f88d5144d5dd2b4b50ce3ba91527fcdab25867279f90bce56977e125c6ec1baa7021d95b3dca2ac4d5aa2c70bf788426642172f40e207a7f68823c5cce6
7
- data.tar.gz: 7c0a736b6739add4949933236d3e3e36f44dfd917545386d206d66cf1f9c9604314e63990b86109311fb12a19a54d7366a38446d336c29e54406248f690ca0a9
6
+ metadata.gz: 2d5aa923aca82712abe8d39bda0b909eb16ab3a8cfca8d51c15c582065238fa7a9fa4cb798d2a6ef363ed6a10d24a7cc331f8008d9ee8b3e205804e4b7aa6920
7
+ data.tar.gz: dc6b252194afb5830d67ca695ce5da920cda0cf82cd41c2281658aeb279643f8382e8d31d32d3759f07f5ceb9dd6ffe159329bd54e09a6605ca6a10f878ce45a
@@ -72,7 +72,7 @@ module RubyPgExtras
72
72
  if value == "4096" && unit == "kB"
73
73
  {
74
74
  ok: false,
75
- message: "It looks like the db is using the default 'work_mem' value of '#{value}#{unit}'. This value is often too low for modern hardware and can result in suboptimal query plans. Visit https://pgtune.leopard.in.ua/ to find the correct value for your database.",
75
+ message: "The db is using the default 'work_mem' value of '#{value}#{unit}'. This value is often too low for modern hardware and can result in suboptimal query plans. Visit https://pgtune.leopard.in.ua/ to find the correct value for your database.",
76
76
  }
77
77
  else
78
78
  {
@@ -94,7 +94,7 @@ module RubyPgExtras
94
94
  if value == "4"
95
95
  {
96
96
  ok: false,
97
- message: "It looks like the db is using the default 'random_page_cost' value of '4'. This value is often too low for modern hardware and can result in suboptimal indexes utilization. Consider setting it to '1.1'. See https://pgtune.leopard.in.ua/ for more information.",
97
+ message: "The db is using the default 'random_page_cost' value of '4'. This value is often too low for modern hardware and can result in suboptimal indexes utilization. Consider setting it to '1.1'. See https://pgtune.leopard.in.ua/ for more information.",
98
98
  }
99
99
  else
100
100
  {
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyPgExtras
4
- VERSION = "5.6.4"
4
+ VERSION = "5.6.6"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-pg-extras
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.6.4
4
+ version: 5.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - pawurb