mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
fix: ignore case while sorting usernames (#7870)
This commit is contained in:
@@ -4779,9 +4779,9 @@ WHERE
|
||||
-- The pagination cursor is the last ID of the previous page.
|
||||
-- The query is ordered by the username field, so select all
|
||||
-- rows after the cursor.
|
||||
(username) > (
|
||||
(LOWER(username)) > (
|
||||
SELECT
|
||||
username
|
||||
LOWER(username)
|
||||
FROM
|
||||
users
|
||||
WHERE
|
||||
@@ -4818,7 +4818,7 @@ WHERE
|
||||
-- End of filters
|
||||
ORDER BY
|
||||
-- Deterministic and consistent ordering of all users. This is to ensure consistent pagination.
|
||||
username ASC OFFSET $5
|
||||
LOWER(username) ASC OFFSET $5
|
||||
LIMIT
|
||||
-- A null limit means "no limit", so 0 means return all
|
||||
NULLIF($6 :: int, 0)
|
||||
|
||||
Reference in New Issue
Block a user