Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-24 03:12:25 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-24 03:12:25 +0300
commitd5fdc905ae426ab5c7788f8ef56070c35360b1d3 (patch)
tree2c22aa90b3988af49c2f08e7346273c57226887c /doc/development/database/understanding_explain_plans.md
parentde5fc582771ba7e2dc6e1c783ce8ee417fbe6788 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/database/understanding_explain_plans.md')
-rw-r--r--doc/development/database/understanding_explain_plans.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/database/understanding_explain_plans.md b/doc/development/database/understanding_explain_plans.md
index 446a84d5232..b3f99da5b26 100644
--- a/doc/development/database/understanding_explain_plans.md
+++ b/doc/development/database/understanding_explain_plans.md
@@ -252,7 +252,7 @@ A scan on an index that required retrieving some data from the table.
Bitmap scans fall between sequential scans and index scans. These are typically
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
+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://gitlab.com/postgres/postgres/blob/REL_11_STABLE/src/include/nodes/plannodes.h#L441)