From 131144d3fa435642d31878be2041facc0810966e Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Fri, 13 Aug 2021 21:04:17 +0200 Subject: [PATCH] [8.x] Clarify that nullable columns aren't supported for cursor pagination (#7232) * Update pagination.md * Update pagination.md Co-authored-by: Taylor Otwell --- pagination.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pagination.md b/pagination.md index a3874c75de..0ce3af86da 100644 --- a/pagination.md +++ b/pagination.md @@ -124,7 +124,7 @@ The cursor pagination query offers the following advantages over offset paginati However, cursor pagination has the following limitations: - Like `simplePaginate`, cursor pagination can only be used to display "Next" and "Previous" links and does not support generating links with page numbers. -- It requires that the ordering is based on at least one unique column or a combination of columns that are unique. +- It requires that the ordering is based on at least one unique column or a combination of columns that are unique. Columns with `null` values are not supported. - Query expressions in "order by" clauses are supported only if they are aliased and added to the "select" clause as well.