Skip to content

Commit

Permalink
Fix : upper case error in repository
Browse files Browse the repository at this point in the history
  • Loading branch information
D-w-nJ committed Oct 5, 2023
1 parent 2fd65d2 commit 67268b4
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 @@ class CourseVideoRepositorySql {
public static final String GET_LAST_INFO_BY_COURSE_ID = """
SELECT v.video_id, v.title, v.video_code, v.channel, cv.start_time, cv.course_video_id
FROM COURSEVIDEO cv
JOIN video v ON cv.video_id = v.video_id
JOIN VIDEO v ON cv.video_id = v.video_id
WHERE cv.course_id = ?
ORDER BY cv.last_view_time DESC, cv.video_index ASC
LIMIT 1
Expand Down

0 comments on commit 67268b4

Please sign in to comment.