pg-index-health-sql icon indicating copy to clipboard operation
pg-index-health-sql copied to clipboard

pg-index-health-sql is a set of sql-queries for analyzing and maintaining indexes and tables health in Postgresql databases.

Results 4 pg-index-health-sql issues
Sort by recently updated
recently updated
newest added

Add documentation for - https://github.com/mfvanek/pg-index-health-sql/blob/master/sql/indexes_with_boolean.sql - https://github.com/mfvanek/pg-index-health-sql/blob/master/sql/check_not_valid_constraints.sql

documentation

See also another queries [table_bloat.txt](https://github.com/mfvanek/pg-index-health-sql/files/14341911/table_bloat.txt) [index_bloat.txt](https://github.com/mfvanek/pg-index-health-sql/files/14341912/index_bloat.txt)

enhancement
help wanted
good first issue

relate : https://github.com/mfvanek/pg-index-health/issues/363

Need to compare [current version of sql query](https://github.com/mfvanek/pg-index-health-sql/blob/master/sql/btree_indexes_on_array_columns.sql) with version by Kirill Borovikov from https://habr.com/ru/companies/tensor/articles/488104/ ```sql WITH sch AS ( SELECT 'public'::text sch -- schema ) , def AS (...

enhancement
help wanted