Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 84c6421

Browse files
committed
remove case sensitive validation for sso login id
1 parent f4dcc35 commit 84c6421

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

queries/get_user_by_sso_login

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ SELECT s.user_id
22
FROM user_sso_login s
33
JOIN sso_login_provider p ON s.provider_id = p.sso_login_provider_id
44
WHERE p.name = '@auth_connection@'
5-
AND s.sso_user_id = '@sso_user_id@'
5+
AND lower(s.sso_user_id) = lower('@sso_user_id@')

0 commit comments

Comments
 (0)