Brett Naul
12/11/2019, 12:50 AMBigQueryLoadGoogleCloudStorage
task (which I wrote but that isn’t really helping 😬) and passing in schema
as a list; by the time schema
is used in run
, somehow the order of the list is being altered, causing the columns to be mis-identified. any idea what might be messing with the schema
input to my task? some kind of argument validation or copy maybe…?
context: https://github.com/PrefectHQ/prefect/blob/master/src/prefect/tasks/google/bigquery.py#L346-L409Jeremiah
12/11/2019, 12:52 AMConstant(schema)
to force the order to be preservedBrett Naul
12/11/2019, 12:57 AMJeremiah
12/11/2019, 1:47 AM