rails-pg-extras 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/rails-pg-extras/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 712194068d7f8212044ed27c5321dab52ef7a42905842d85f662e36b2924fe72
|
|
4
|
+
data.tar.gz: 83dbc962cdc9c2f3e59ab7554f18bfb56945b1b559444638581804f92c55b643
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17418e862bd124674f0601dba910c136017b915df44cdd3f76c0ba95a796a38347fcf7b46e07718ea40dbc0c39bfef3b329804c595ce4b8a0ea751fb90e547c3
|
|
7
|
+
data.tar.gz: 0bf1430a297b058970decec4865abfeb21cef512fb5b7c189d54140627a24871a51f976066e43da499228ddb56380e42dbb5226f7d5435f7218ecd8e95d5ba7d
|
data/README.md
CHANGED
|
@@ -248,7 +248,7 @@ This command displays the size of each table and materialized view in the databa
|
|
|
248
248
|
### `table_indexes_size`
|
|
249
249
|
|
|
250
250
|
```
|
|
251
|
-
$ rake pg_extras:
|
|
251
|
+
$ rake pg_extras:table_indexes_size
|
|
252
252
|
|
|
253
253
|
table | indexes_size
|
|
254
254
|
---------------------------------------------------------------+--------------
|
|
@@ -260,7 +260,7 @@ $ rake pg_extras:table-indexes-size
|
|
|
260
260
|
(truncated results for brevity)
|
|
261
261
|
```
|
|
262
262
|
|
|
263
|
-
This command displays the total size of indexes for each table, in MB. It is calcualtes by using the system administration function `pg_indexes_size()`.
|
|
263
|
+
This command displays the total size of indexes for each table and materialized view, in MB. It is calcualtes by using the system administration function `pg_indexes_size()`.
|
|
264
264
|
|
|
265
265
|
### `total_table_size`
|
|
266
266
|
|
|
@@ -277,7 +277,7 @@ $ rake pg_extras:total_table_size
|
|
|
277
277
|
(truncated results for brevity)
|
|
278
278
|
```
|
|
279
279
|
|
|
280
|
-
This command displays the total size of each table in the database, in MB. It is calculated by using the system administration function `pg_total_relation_size()`, which includes table size, total index size and TOAST data.
|
|
280
|
+
This command displays the total size of each table and materialized view in the database, in MB. It is calculated by using the system administration function `pg_total_relation_size()`, which includes table size, total index size and TOAST data.
|
|
281
281
|
|
|
282
282
|
### `unused_indexes`
|
|
283
283
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails-pg-extras
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- pawurb
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.2.
|
|
19
|
+
version: 1.2.1
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.2.
|
|
26
|
+
version: 1.2.1
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: activerecord
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|