Skip to content

Commit

Permalink
fix: 누락된 정렬 조건 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
apptie committed Sep 5, 2023
1 parent 4c493ee commit 637a43d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public Slice<Auction> findAuctionsAllByLastAuctionId(final Long lastAuctionId, f
.leftJoin(auction.seller).fetchJoin()
.leftJoin(auction.lastBid).fetchJoin()
.where(auction.id.in(findAuctionIds.toArray(Long[]::new)))
.orderBy(auction.id.desc())
.orderBy(orderSpecifiers.toArray(OrderSpecifier[]::new))
.fetch();

return QuerydslSliceHelper.toSlice(findAuctions, pageable);
Expand Down

0 comments on commit 637a43d

Please sign in to comment.