summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcia Ramos <marcia@gitlab.com>2019-06-03 15:43:30 +0000
committerMarcia Ramos <marcia@gitlab.com>2019-06-03 15:43:30 +0000
commit8e4f121d278899f68fa1505cc0518256f5decd1e (patch)
tree67dcfdbaf527334f54282f8a5697d2b2cd89120d
parent366d925d5b20d12a10ef603ac273a148fe78a105 (diff)
parent8615250930b91938a0bef08508c20adfb0c1e36b (diff)
downloadgitlab-ce-8e4f121d278899f68fa1505cc0518256f5decd1e.tar.gz
Merge branch 'tc-db-docs' into 'master'
Add some more database docs See merge request gitlab-org/gitlab-ce!28784
-rw-r--r--doc/development/understanding_explain_plans.md11
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/development/understanding_explain_plans.md b/doc/development/understanding_explain_plans.md
index 01a0044f096..0abd86d4b4c 100644
--- a/doc/development/understanding_explain_plans.md
+++ b/doc/development/understanding_explain_plans.md
@@ -80,8 +80,9 @@ Planning time: 2.861 ms
Execution time: 3428.596 ms
```
-For more information, refer to the official [EXPLAIN
-documentation](https://www.postgresql.org/docs/current/static/sql-explain.html).
+For more information, refer to the official
+[`EXPLAIN` documentation](https://www.postgresql.org/docs/current/sql-explain.html)
+and [using `EXPLAIN` guide](https://www.postgresql.org/docs/current/using-explain.html).
## Nodes
@@ -674,3 +675,9 @@ For more information about the available options, run:
```
/chatops run explain --help
```
+
+## Further reading
+
+A more extensive guide on understanding query plans can be found in
+the [presentation](https://www.dalibo.org/_media/understanding_explain.pdf)
+from [Dalibo.org](https://www.dalibo.org/en/).