-
Notifications
You must be signed in to change notification settings - Fork 22
Description
Hey
I am trying to download app data from bigquery and getting the above error.
Firebase is connected to bq and I have "events_" table there.
I am trying to download the data using this function
bqr_partition("events_2021", "ga_partition", my_project, my_dataset)
But I am getting this error and I dont understand how to solve it
Job had error:
Provided Schema does not match Table xxxx-native-app-33f08:analytics_153017681.ga_partition$20210601. Cannot add fields (field: event_params)
[1] "Provided Schema does not match Table xxxx-native-app-33f08:analytics_153017681.ga_partition$20210601. Cannot add fields (field: event_params)"
Do I need to specify the schema for this function?
I tried narrowing the function even more
bqr_partition("events_202106", "ga_partition", my_project, my_dataset)
Still getting the same error
Thanks