Added link to docs.
--- a/postgres.rst Tue Dec 31 17:59:09 2019 +0200
+++ b/postgres.rst Tue Dec 31 18:00:00 2019 +0200
@@ -240,16 +240,19 @@
WHERE query LIKE '%some%'
ORDER BY calls DESC;
+https://www.postgresql.org/docs/current/pgstatstatements.html
+ ``pg_stat_statements``.
+https://www.postgresql.org/docs/current/indexes-examine.html
+ Examining Index Usage.
+
Reveal execution details::
EXPLAIN ANALYSE SELECT 1;
EXPLAIN (TIMING false, COSTS false, ANALYSE) SELECT 1;
EXPLAIN (TIMING false, COSTS false, BUFFERS false, VERBOSE false, ANALYSE) SELECT 1;
-https://www.postgresql.org/docs/current/pgstatstatements.html
- ``pg_stat_statements``.
-https://www.postgresql.org/docs/current/indexes-examine.html
- Examining Index Usage.
+https://www.postgresql.org/docs/11/sql-explain.html
+ ``EXPLAIN``.
List databases, schemas and tables
==================================