diff options
author | Nikolay Samokhvalov <gitlab@samokhvalov.com> | 2019-08-13 06:03:53 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2019-08-13 06:03:53 +0000 |
commit | 5487280c8cf4f7b8e7ee88f6c7c915efc93316c9 (patch) | |
tree | ea46a334018f672d15cf2cf92a502b19d14e33a8 | |
parent | 6a9c2461d9ce2c0628cd6846a8c0600e6c4e1517 (diff) | |
download | gitlab-ce-5487280c8cf4f7b8e7ee88f6c7c915efc93316c9.tar.gz |
Links: switch from GitHub to GitLab Postgres mirror repo
GitLab.com also has an up-to-date Postgres mirror.
-rw-r--r-- | doc/development/understanding_explain_plans.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/understanding_explain_plans.md b/doc/development/understanding_explain_plans.md index 11aafd7b639..7c926c83a36 100644 --- a/doc/development/understanding_explain_plans.md +++ b/doc/development/understanding_explain_plans.md @@ -199,7 +199,7 @@ more common ones here. A full list of all the available nodes and their descriptions can be found in the [PostgreSQL source file -"plannodes.h"](https://github.com/postgres/postgres/blob/master/src/include/nodes/plannodes.h) +"plannodes.h"](https://gitlab.com/postgres/postgres/blob/master/src/include/nodes/plannodes.h) ### Seq Scan @@ -224,7 +224,7 @@ used when we would read too much data from an index scan, but too little to perform a sequential scan. A bitmap scan uses what is known as a [bitmap index](https://en.wikipedia.org/wiki/Bitmap_index) to perform its work. -The [source code of PostgreSQL](https://github.com/postgres/postgres/blob/1c2cb2744bf3d8ad751cd5cf3b347f10f48492b3/src/include/nodes/plannodes.h#L446-L457) +The [source code of PostgreSQL](https://gitlab.com/postgres/postgres/blob/REL_11_STABLE/src/include/nodes/plannodes.h#L441) states the following on bitmap scans: > Bitmap Index Scan delivers a bitmap of potential tuple locations; it does not |