From 074af3efc33cb6f8da2d3d054d5059a3cdabde61 Mon Sep 17 00:00:00 2001 From: HyeonJun An Date: Sun, 24 Sep 2023 20:28:55 +0900 Subject: [PATCH] =?UTF-8?q?[LH-195]=20filtering=20=EC=A1=B0=EA=B1=B4=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=20(#43)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lingoswap/match/repository/MatchedMemberRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/lighthouse/lingoswap/match/repository/MatchedMemberRepository.java b/src/main/java/com/lighthouse/lingoswap/match/repository/MatchedMemberRepository.java index f70f4dd..78045cf 100644 --- a/src/main/java/com/lighthouse/lingoswap/match/repository/MatchedMemberRepository.java +++ b/src/main/java/com/lighthouse/lingoswap/match/repository/MatchedMemberRepository.java @@ -51,7 +51,7 @@ INSERT INTO matched_member(from_member_id, to_member_id) ) AS sub GROUP BY sub.mm_id - ORDER BY SUM(sub.score) DESC + ORDER BY SUM(sub.score) """, nativeQuery = true) void saveMatchedMembersWithPreferences( @Param("memberId") Long memberId,