test #314

Merged
klaus merged 2 commits from test into main 2025-05-12 02:12:47 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit ced35af66d - Show all commits

View File

@ -424,7 +424,8 @@ class MemberQueryRepositoryImpl(
.from(liveReservation)
.innerJoin(liveReservation.room, liveRoom)
.innerJoin(liveReservation.member, member)
.where(where.and(pushToken.deviceType.eq("aos")))
.innerJoin(pushToken).on(member.id.eq(pushToken.member.id))
.where(where.and(pushToken.deviceType.eq("ios")))
.fetch()
.toSet()
.chunked(500)