Skip to content

Commit

Permalink
Merge pull request #55 from f-lab-edu/feature/#54
Browse files Browse the repository at this point in the history
fix: Product Validation 쿼리 테이블명과 컬럼명 소문자로 변경
  • Loading branch information
koo995 authored Sep 14, 2024
2 parents c7e3bdb + 3319fd9 commit e283113
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 e283113

Please sign in to comment.