File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -340,6 +340,7 @@ async def statistics(start: datetime, end: datetime) -> Statistics:
340340 select from_user_id as user_id, count(from_user_id) from view_subject_patch
341341 where state = any($1) and (created_at between $2 and $3)
342342 group by from_user_id
343+ order by from_user_id asc
343344 """ ,
344345 [PatchState .Accept , PatchState .Outdated ],
345346 start ,
@@ -351,6 +352,7 @@ async def statistics(start: datetime, end: datetime) -> Statistics:
351352 select from_user_id as user_id, count(from_user_id) from view_episode_patch
352353 where state = any($1) and (created_at between $2 and $3)
353354 group by from_user_id
355+ order by from_user_id asc
354356 """ ,
355357 [PatchState .Accept , PatchState .Outdated ],
356358 start ,
You can’t perform that action at this time.
0 commit comments