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-09-14 06:12:37 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-09-14 06:12:37 +0300
commit1a92cb5aaf5a1bc1338a5124275c35b18d295255 (patch)
tree6c93f80589c59fd20aad0664877c5cc1372a5c9f /doc/development/sql.md
parent3521fa595b022a402f3ed1e8c423021e6ad8ae49 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/sql.md')
-rw-r--r--doc/development/sql.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/sql.md b/doc/development/sql.md
index e84c9747e32..029874011c4 100644
--- a/doc/development/sql.md
+++ b/doc/development/sql.md
@@ -397,7 +397,7 @@ default.
While `WHERE IN` and `WHERE EXISTS` can be used to produce the same data it is
recommended to use `WHERE EXISTS` whenever possible. While in many cases
-PostgreSQL can optimise `WHERE IN` quite well there are also many cases where
+PostgreSQL can optimize `WHERE IN` quite well there are also many cases where
`WHERE EXISTS` performs (much) better.
In Rails you have to use this by creating SQL fragments: