Skip to content

Commit

Permalink
FIX: 정렬 방식을 Pageable을 기준으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
saewoo1 committed Oct 29, 2024
1 parent d2857ff commit 6948dcd
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ List<Presentation> findAllByDateTimeBetweenOrderByDateTime(LocalDateTime start,
@Query("SELECT p "
+ "FROM Presentation p "
+ "WHERE p.presentationStatus = :status AND "
+ "p.dateTime BETWEEN :start AND :end "
+ "ORDER BY p.dateTime ASC")
+ "p.dateTime BETWEEN :start AND :end")
List<Presentation> findPresentationsWithinPeriod(
@Param("status") PresentationStatus status,
@Param("start") LocalDateTime start,
Expand Down

0 comments on commit 6948dcd

Please sign in to comment.