Skip to content

Commit 8f69215

Browse files
committed
refactor/
1 parent 80cc3d5 commit 8f69215

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/java/com/back/domain/artist/repository/ArtistApplicationRepository.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ public interface ArtistApplicationRepository extends JpaRepository<ArtistApplica
4545
LEFT JOIN FETCH a.user u
4646
WHERE (:keyword IS NULL OR
4747
LOWER(a.artistName) LIKE LOWER(CONCAT('%', :keyword, '%')) OR
48-
LOWER(u.email) LIKE LOWER(CONCAT('%', :keyword, '%')) OR
4948
CAST(u.id AS string) LIKE CONCAT('%', :keyword, '%'))
5049
AND (:status IS NULL OR a.status = :status)
5150
ORDER BY

0 commit comments

Comments
 (0)