Skip to content

Commit

Permalink
fix: 학번으로 주문 조회시 발생하는 에러 수정 (#557)
Browse files Browse the repository at this point in the history
fix: 학번으로 조회시 발생하는 에러 수정
  • Loading branch information
Sangwook02 authored Aug 2, 2024
1 parent e1e4cf5 commit 82008b3
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ private List<Long> getIdsByQueryOption(
.from(order)
.innerJoin(recruitmentRound)
.on(order.recruitmentRoundId.eq(recruitmentRound.id))
.innerJoin(member)
.on(order.memberId.eq(member.id))
.where(matchesOrderQueryOption(queryOption), predicate)
.orderBy(orderSpecifiers)
.fetch();
Expand Down

0 comments on commit 82008b3

Please sign in to comment.