spotless 적용

This commit is contained in:
2026-01-05 10:17:52 +09:00
parent 829cb510e3
commit 6a77d0f447

View File

@@ -35,20 +35,19 @@ public class InferenceResultRepositoryImpl implements InferenceResultRepositoryC
public int upsertGroupsFromMapSheetAnal() {
String sql =
"""
INSERT INTO tb_map_sheet_anal_inference (
compare_yyyy,
target_yyyy,
stage,
anal_title
)
SELECT
r.input1 AS compare_yyyy,
r.input2 AS target_yyyy,
r.stage,
CONCAT(r.stage ,'_', r.input1 ,'_', r.input2) AS anal_title
FROM inference_results r
GROUP BY r.stage, r.input1, r.input2;
INSERT INTO tb_map_sheet_anal_inference (
compare_yyyy,
target_yyyy,
stage,
anal_title
)
SELECT
r.input1 AS compare_yyyy,
r.input2 AS target_yyyy,
r.stage,
CONCAT(r.stage ,'_', r.input1 ,'_', r.input2) AS anal_title
FROM inference_results r
GROUP BY r.stage, r.input1, r.input2;
""";
return em.createNativeQuery(sql).executeUpdate();