Skip to content

Commit

Permalink
refactor: 정렬 기준 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
belljun3395 committed Oct 11, 2024
1 parent e0a771c commit 5b199eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class ArticleViewCountDao(
)
)
).orderBy(
field(EMAIL_VIEW_COUNT_TABLE_VIEW_COUNT, Long::class.java).desc(),
field(VIEW_COUNT_COLUMN, Long::class.java).desc(),
ARTICLE_VIEW_COUNT.ARTICLE_ID.desc()
).limit(query.offset, Long.MAX_VALUE)
.asTable(ARTICLE_VIEW_COUNT_OFFSET_TABLE)
Expand Down

0 comments on commit 5b199eb

Please sign in to comment.