test #28
|
@ -82,7 +82,8 @@ class LiveReservationQueryRepositoryImpl(private val queryFactory: JPAQueryFacto
|
|||
.innerJoin(liveReservation.member, member)
|
||||
.innerJoin(liveReservation.room, liveRoom)
|
||||
.where(
|
||||
liveReservation.isActive.eq(active)
|
||||
liveRoom.isActive.isTrue
|
||||
.and(liveReservation.isActive.eq(active))
|
||||
.and(member.id.eq(memberId))
|
||||
)
|
||||
.fetch()
|
||||
|
|
Loading…
Reference in New Issue