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-04 15:11:22 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-04 15:11:22 +0300
commit39e07b68051f93f95d11b8607dfaa8ae87458bb7 (patch)
treeda662669a0061282555dfe646367c11614eeb1ec /doc/development/database/pagination_performance_guidelines.md
parent13f31ab91aeb5233a7b64f2740fee246294161fc (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/database/pagination_performance_guidelines.md')
-rw-r--r--doc/development/database/pagination_performance_guidelines.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/development/database/pagination_performance_guidelines.md b/doc/development/database/pagination_performance_guidelines.md
index b5040e499e4..0fef246f133 100644
--- a/doc/development/database/pagination_performance_guidelines.md
+++ b/doc/development/database/pagination_performance_guidelines.md
@@ -12,11 +12,11 @@ The following document gives a few ideas for improving the pagination (sorting)
When ordering the columns it's advised to order by distinct columns only. Consider the following example:
-|`id`|`created_at`|
-|-|-|
-|1|2021-01-04 14:13:43|
-|2|2021-01-05 19:03:12|
-|3|2021-01-05 19:03:12|
+| `id` | `created_at` |
+|------|-----------------------|
+| `1` | `2021-01-04 14:13:43` |
+| `2` | `2021-01-05 19:03:12` |
+| `3` | `2021-01-05 19:03:12` |
If we order by `created_at`, the result would likely depend on how the records are located on the disk.