Added link to docs.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Tue, 31 Dec 2019 18:00:00 +0200
changeset 2399 ed213cf36a1c
parent 2398 ac2b5bc2f2c1
child 2400 bdff41e50608
Added link to docs.
postgres.rst
--- 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
 ==================================