Skip to content

Commit aa16b4f

Browse files
authored
Merge pull request #398 from depromeet/develop
hotfix: 모호한 쿼리 오류 해결
2 parents 67a353c + 916638f commit aa16b4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

layer-admin/src/main/java/org/layer/admin/space/repository/AdminMemberSpaceRepositoryImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ SELECT AVG(ratio) FROM (
6666
SUM(CASE WHEN ash.category = 'TEAM' THEN 1 ELSE 0 END) * 1.0 / COUNT(*) AS ratio
6767
FROM admin_member_space_history amsh
6868
JOIN admin_space_history ash ON amsh.space_id = ash.space_id
69-
WHERE event_time BETWEEN :startTime AND :endTime
69+
WHERE amsh.event_time BETWEEN :startTime AND :endTime
7070
GROUP BY member_id
7171
) AS per_member
7272
""";

0 commit comments

Comments
 (0)