Created
February 2, 2017 22:44
-
-
Save ryanaslett/6f7f773c94bf34c7f7ec5b163e08b00c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
postgres=# select * from pg_statio_all_tables where relname in ('pg_class','pg_type'); | |
relid | schemaname | relname | heap_blks_read | heap_blks_hit | idx_blks_read | idx_blks_hit | toast_blks_read | toast_blks_hit | tidx_blks_read | tidx_blks_hit | |
-------+------------+----------+----------------+---------------+---------------+--------------+-----------------+----------------+----------------+--------------- | |
1247 | pg_catalog | pg_type | 8 | 58 | 13 | 65 | | | | | |
1259 | pg_catalog | pg_class | 114 | 742 | 30 | 611 | | | | | |
(2 rows) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment