- 남/여 크리에이터 리스트 추가
- 인기크리, 새로시작 외 나머지 섹션 제거
This commit is contained in:
Klaus 2024-05-03 01:34:30 +09:00
parent 82f49667a9
commit 6b138246a9
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ class ExplorerQueryRepository(
val rotatedChars = characters.drop(offset) + characters.take(offset) val rotatedChars = characters.drop(offset) + characters.take(offset)
val caseWhenClauses = rotatedChars.withIndex().joinToString(" ") { val caseWhenClauses = rotatedChars.withIndex().joinToString(" ") {
"WHEN {0}.email LIKE '{1}%' THEN {2}".format(member, it.value, it.index + 1) "WHEN ${member.email} LIKE '${it.value}%' THEN ${it.index + 1}"
} }
val caseExpression = Expressions.stringTemplate("CASE $caseWhenClauses END") val caseExpression = Expressions.stringTemplate("CASE $caseWhenClauses END")