This change updates the logic that masks the Region field to preserve the type as STRING.
Previously, because NULL has no type, the schema is inferred as an INTEGER without explicit direction. This change updates the Region value to use CAST(NULL as STRING) to preserve the string type and the NULL value.
This change updates the logic that masks the
Region
field to preserve the type asSTRING
.Previously, because NULL has no type, the schema is inferred as an
INTEGER
without explicit direction. This change updates theRegion
value to useCAST(NULL as STRING)
to preserve the string type and the NULL value.This change is