kp-tom-sc
Results
2
comments of
kp-tom-sc
We use the cli --vars to pass in airflow datetime variables. These change on each run, so we can't partial parse. Is there a better way of handling datetime variables?...
For anyone else that stumbles across this, you can: ``` timestamp_fields = [field.name for field in tbl.schema if pa.types.is_timestamp(field.type)] null_fields = [field.name for field in tbl.schema if pa.types.is_null(field.type)] fields =...