fix: use correct empty uuids (#4917)

This commit is contained in:
Colin Adler
2022-11-06 16:49:43 -06:00
committed by GitHub
parent 1898f67fe0
commit 65ffa20ba2
7 changed files with 16 additions and 16 deletions

View File

@ -42,7 +42,7 @@ WHERE
-- This allows using the last element on a page as effectively a cursor.
-- This is an important option for scripts that need to paginate without
-- duplicating or missing data.
WHEN @after_id :: uuid != '00000000-00000000-00000000-00000000' THEN (
WHEN @after_id :: uuid != '00000000-0000-0000-0000-000000000000'::uuid THEN (
-- The pagination cursor is the last ID of the previous page.
-- The query is ordered by the build_number field, so select all
-- rows after the cursor.