test #340

Merged
klaus merged 11 commits from test into main 2025-09-14 08:51:12 +00:00
1 changed files with 1 additions and 2 deletions
Showing only changes of commit a07407417c - Show all commits

View File

@ -51,9 +51,8 @@ class AdminChatCalculateQueryRepository(
val c2 = QChatCharacter("c2") val c2 = QChatCharacter("c2")
val characterIdExpr = c1.id.coalesce(c2.id) val characterIdExpr = c1.id.coalesce(c2.id)
// ONLY_FULL_GROUP_BY 대응: name/imagePath는 집계 함수로 선택
val characterNameAgg = Expressions.stringTemplate( val characterNameAgg = Expressions.stringTemplate(
"coalesce(max({0}), max({1}))", "coalesce(max({0}), max({1}), '')",
c1.name, c1.name,
c2.name c2.name
) )