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>2023-06-26 21:08:59 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-26 21:08:59 +0300
commit5f825c2edec69e9a23e100c949c6c40e88ae5235 (patch)
treedc510f698f6885ae3656da30eb4c4e5ab4f5dd58 /doc/development/database/efficient_in_operator_queries.md
parentc46e0d0c271a21b67a3412faf750d27dd63432bb (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/database/efficient_in_operator_queries.md')
-rw-r--r--doc/development/database/efficient_in_operator_queries.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/database/efficient_in_operator_queries.md b/doc/development/database/efficient_in_operator_queries.md
index a770dfe6531..03a1c442255 100644
--- a/doc/development/database/efficient_in_operator_queries.md
+++ b/doc/development/database/efficient_in_operator_queries.md
@@ -672,7 +672,7 @@ end
#### Ordering by `JOIN` columns
Ordering records by mixed columns where one or more columns are coming from `JOIN` tables
-works with limitations. It requires extra configuration (CTE). The trick is to use a
+works with limitations. It requires extra configuration via Common Table Expression (CTE). The trick is to use a
non-materialized CTE to act as a "fake" table which exposes all required columns.
NOTE: