Skip to content

Commit 25f1c0b

Browse files
nevio18324MasterEvarior
authored andcommitted
fix: keyresult type check failing because of wrong case #1680
1 parent 896d5b7 commit 25f1c0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/main/resources/db/migration/V3_6_3__recreate_evaluation_view.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ SELECT
1515
kr.stretch_goal,
1616
ci.value_metric,
1717
CASE
18-
WHEN kr.key_result_type = 'ORDINAL' THEN NULLIF(ci.zone, '')
18+
WHEN UPPER(kr.key_result_type) = 'ORDINAL' THEN NULLIF(ci.zone, '')
1919
ELSE NULL
2020
END AS zone,
2121
ci.modified_on AS latest_check_in_date

0 commit comments

Comments
 (0)