Merge pull request 'fix: preserve literal 'NULL' strings for primary key columns' (#49) from feature/ingest-independent-schools into main
Stage (build -> staging -> E2E gate) / Build Backend (FastAPI) (push) Successful in 13s
Stage (build -> staging -> E2E gate) / Build Frontend (Next.js) (push) Successful in 50s
Stage (build -> staging -> E2E gate) / Build Pipeline (Meltano + dbt + Airflow) (push) Successful in 1m25s
Stage (build -> staging -> E2E gate) / Deploy to Staging (push) Successful in 0s
Stage (build -> staging -> E2E gate) / E2E Journeys against Staging (push) Failing after 44s

Reviewed-on: #49
This commit was merged in pull request #49.
This commit is contained in:
2026-07-16 07:54:41 +00:00
@@ -239,7 +239,7 @@ class OfstedInspectionsStream(Stream):
record = {} record = {}
for field, col in col_map.items(): for field, col in col_map.items():
val = row.get(col, None) val = row.get(col, None)
if pd.isna(val) or val == 'NULL': if pd.isna(val):
val = None val = None
record[field] = val record[field] = val