test #163

Merged
klaus merged 2 commits from test into main 2024-04-09 14:40:34 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 4e84678a3c - Show all commits

View File

@ -58,8 +58,8 @@ class LiveRoomQueryRepositoryImpl(private val queryFactory: JPAQueryFactory) : L
.offset(offset)
.limit(limit)
.orderBy(
quarterLiveRankings.totalCan.desc(),
quarterLiveRankings.totalParticipants.desc(),
quarterLiveRankings.totalCan.coalesce(0).desc(),
quarterLiveRankings.totalParticipants.coalesce(0).desc(),
liveRoom.beginDateTime.desc(),
liveRoom.member.createdAt.desc()
)