Skip to content

Commit 8bc55fb

Browse files
committed
bump version_number: "1.4.0" fixes
1 parent 304046d commit 8bc55fb

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

deployment_extracts/ssd_version_history.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ releases:
1515
ssd_care_leavers.sql (InvolvementHistoryCTE)
1616
ssd_cla_episodes.sql (outer apply getting MAX(cn.EVENT_DTTM) AS clae_cla_last_iro_contact_date)
1717
ssd_cla_previous_permanence.sql (using ELSE '' and removed COALESCE on MAX CASE blocks all)
18+
duplication of DECLARE vars within ssd_vw_current_time_windows to enable GO
1819
1920
impact_description: >
2021
to provide increased|robust null handling in tables flagged by LAs as diplaying common warnings in SSD build
22+
to address issue of unavaiable timeframe var within newly added ssd_vw_current_time_windows
2123
impacts_cms_deployment:
2224
- "systemc"
2325

deployment_extracts/systemc/live/ssd_deployment_individual_files/systemc_sqlserver_v1.3.9_1_20260120.sql renamed to deployment_extracts/systemc/live/ssd_deployment_individual_files/systemc_sqlserver_v1.4.0_1_20260120.sql

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6981,7 +6981,13 @@ PRINT 'Run time duration: '
69816981
-- =============================================================================
69826982

69836983
/* GO - remove in Proc based deployment */
6984-
-- GO
6984+
GO
6985+
6986+
-- replicated here in case above use of GO required
6987+
-- Core SSD timeframe parameter
6988+
DECLARE @ssd_timeframe_years INT = 6; -- ssd extract time-frame (YRS)
6989+
DECLARE @ssd_sub1_range_years INT = 1; -- ssd sub-window internal or additional LA use
6990+
69856991

69866992
CREATE OR ALTER VIEW ssd_development.ssd_vw_current_time_windows
69876993
AS
@@ -7028,7 +7034,7 @@ CROSS APPLY
70287034

70297035

70307036
/* GO - remove in Proc based deployment */
7031-
--GO
7037+
GO
70327038
select * from ssd_development.ssd_vw_current_time_windows;
70337039

70347040
-- META-END

0 commit comments

Comments
 (0)