From 4eac034617be5e654b3be22d8e3589d252e42218 Mon Sep 17 00:00:00 2001 From: nuyh Date: Wed, 1 Nov 2023 16:34:06 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=ED=82=A4=EC=9B=8C=EB=93=9C=20?= =?UTF-8?q?=EC=A1=B0=ED=9A=8C=20=EC=8B=9C=20=EC=B6=94=EC=B2=9C=20=ED=8F=AC?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20fetch=20join=20->=20batch=20size=20?= =?UTF-8?q?=EC=82=AC=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #1609 --- .../prolog/roadmap/domain/repository/KeywordRepository.java | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/main/java/wooteco/prolog/roadmap/domain/repository/KeywordRepository.java b/backend/src/main/java/wooteco/prolog/roadmap/domain/repository/KeywordRepository.java index 8b5e412cd..99806ca93 100644 --- a/backend/src/main/java/wooteco/prolog/roadmap/domain/repository/KeywordRepository.java +++ b/backend/src/main/java/wooteco/prolog/roadmap/domain/repository/KeywordRepository.java @@ -39,7 +39,6 @@ public interface KeywordRepository extends JpaRepository { @Query("SELECT k FROM Keyword k " + "JOIN Session s ON s.id = k.sessionId " + - "LEFT JOIN FETCH RecommendedPost r ON r.keyword.id = k.id " + "WHERE s.curriculumId = :curriculumId ") List findAllByCurriculumId(Long curriculumId); }