dev #505

Merged
ysCha merged 2 commits from dev into dev-deploy 2026-06-01 09:16:12 +09:00
Showing only changes of commit cd047bbeed - Show all commits

View File

@ -466,7 +466,8 @@
GROUP BY CIRCUIT_NO, CIRCUIT_ITEM_ID, CIRCUIT_CFG, CIRCUIT_SUM, PNOW_W
)
SELECT ROUND((SUM(MIN_VALUE) / 1000), 4) AS CERT_VOL_KW
-- 2026-05-22: FLOAT ROUND 결과의 IEEE754 잔여(예: 5.5600000000000005) 차단 위해 DECIMAL(18,4) 캐스팅
SELECT CAST(ROUND((SUM(MIN_VALUE) / 1000), 4) AS DECIMAL(18,4)) AS CERT_VOL_KW
FROM CIRCUIT_AGG
]]>