We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b38dfe7 commit f0e8cfdCopy full SHA for f0e8cfd
README.md
@@ -11,3 +11,4 @@ These are copied from elsewhere on the Internet and the original source will be
11
* [pg_squeeze](https://github.com/cybertec-postgresql/pg_squeeze)
12
* [Reduce disk bloat in PostgreSQL](https://www.redpill-linpro.com/sysadvent/2017/12/08/pg_repack.html)
13
* [Annotated.conf](https://github.com/jberkus/annotated.conf)
14
+* [Postgres Index stats and Query Optimization](https://sgerogia.github.io/Postgres-Index-And-Queries/)
list_indexes.sql
@@ -0,0 +1,11 @@
1
+SELECT
2
+ tablename,
3
+ indexname,
4
+ indexdef
5
+FROM
6
+ pg_indexes
7
+WHERE
8
+ schemaname = 'public'
9
+ORDER BY
10
+ indexname;
0 commit comments