fix(dbt): stub rc_* columns as NULL in stg_ofsted_inspections
All checks were successful
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 33s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m10s
Build and Push Docker Images / Build Integrator (push) Successful in 56s
Build and Push Docker Images / Build Kestra Init (push) Successful in 32s
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Successful in 1m23s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s
All checks were successful
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 33s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m10s
Build and Push Docker Images / Build Integrator (push) Successful in 56s
Build and Push Docker Images / Build Kestra Init (push) Successful in 32s
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Successful in 1m23s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s
tap-uk-ofsted schema only declares OEIF columns; rc_* (Report Card) columns were never emitted so they don't exist in raw.ofsted_inspections. Replace column references with NULL::text until the actual CSV column names for the post-Nov 2025 Report Card framework are confirmed and added to the tap schema. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -21,16 +21,17 @@ renamed as (
|
|||||||
cast(early_years_provision as integer) as early_years_provision,
|
cast(early_years_provision as integer) as early_years_provision,
|
||||||
cast(sixth_form_provision as integer) as sixth_form_provision,
|
cast(sixth_form_provision as integer) as sixth_form_provision,
|
||||||
|
|
||||||
-- Report Card fields (populated for post-Nov 2025 inspections)
|
-- Report Card fields (post-Nov 2025 framework)
|
||||||
rc_safeguarding_met,
|
-- TODO: add rc_* columns to tap-uk-ofsted schema once CSV column names are confirmed
|
||||||
rc_inclusion,
|
null::text as rc_safeguarding_met,
|
||||||
rc_curriculum_teaching,
|
null::text as rc_inclusion,
|
||||||
rc_achievement,
|
null::text as rc_curriculum_teaching,
|
||||||
rc_attendance_behaviour,
|
null::text as rc_achievement,
|
||||||
rc_personal_development,
|
null::text as rc_attendance_behaviour,
|
||||||
rc_leadership_governance,
|
null::text as rc_personal_development,
|
||||||
rc_early_years,
|
null::text as rc_leadership_governance,
|
||||||
rc_sixth_form,
|
null::text as rc_early_years,
|
||||||
|
null::text as rc_sixth_form,
|
||||||
|
|
||||||
report_url
|
report_url
|
||||||
from source
|
from source
|
||||||
|
|||||||
Reference in New Issue
Block a user