ruby-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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1967b4e46414629bd3af498287abfbfc99dea8ac1cf6d70a929dcf2a9889b53
|
|
4
|
+
data.tar.gz: 0b045ccc5a99f2a354b96cd521643ece47729080149b433f261491d4e2146741
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0561d594ad8fb4e1750b291e6339ee29d2b96f7c11b76b9fe444ac52708d07ce2119caa78f8b675e6633535566dc9b100a284451f387c77ec14e0f1e1d8f778b
|
|
7
|
+
data.tar.gz: 6224cecfe5ee92421de2c0052d0dd6c763e56a969aad3af7bf0962ce4beacc3754e499b9c7a93942b3e033c5fe5d31f3a852716cf255c94c69f94a6848b3c046
|
data/README.md
CHANGED
|
@@ -283,7 +283,7 @@ RubyPGExtras.table_indexes_size
|
|
|
283
283
|
(truncated results for brevity)
|
|
284
284
|
```
|
|
285
285
|
|
|
286
|
-
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()`.
|
|
286
|
+
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()`.
|
|
287
287
|
|
|
288
288
|
### `total_table_size`
|
|
289
289
|
|
|
@@ -301,7 +301,7 @@ RubyPGExtras.total_table_size
|
|
|
301
301
|
(truncated results for brevity)
|
|
302
302
|
```
|
|
303
303
|
|
|
304
|
-
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.
|
|
304
|
+
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.
|
|
305
305
|
|
|
306
306
|
### `unused_indexes`
|
|
307
307
|
|