Skip to content

Commit

Permalink
refactor(repository): 불필요한 개행 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
zeus6768 committed Oct 8, 2024
1 parent 0590555 commit 6eb92fe
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ default Tag fetchByName(String name) {
@Query(value = "SELECT * FROM tag WHERE tag.name = BINARY :name", nativeQuery = true)
Optional<Tag> findByName(@Param("name") String name);

@Query(
value = "SELECT * FROM tag WHERE tag.name COLLATE utf8mb4_bin IN :names",
nativeQuery = true)
@Query(value = "SELECT * FROM tag WHERE tag.name COLLATE utf8mb4_bin IN :names", nativeQuery = true)
List<Tag> findAllByNames(@Param("names") List<String> names);
}

0 comments on commit 6eb92fe

Please sign in to comment.