Skip to content

Commit

Permalink
fix: ProductCrudRepository.isExistDuplicatedProductByNormalizedName()…
Browse files Browse the repository at this point in the history
… 쿼리에서 테이블명과 컬럼명 소문자로 변경
  • Loading branch information
koo995 committed Sep 14, 2024
1 parent c7e3bdb commit 3319fd9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

public interface ProductCrudRepository extends CrudRepository<Product, Long> {

@Query("select count(*) from PRODUCT where PRODUCT_NORMALIZED_NAME = :normalizedName")
@Query("select count(*) from product where product_normalized_name = :normalizedName")
Integer isExistDuplicatedProductByNormalizedName(String normalizedName);
}

0 comments on commit 3319fd9

Please sign in to comment.