You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this field is a string in the underlying table, it has format e.g. 2021-09-30+02:00. usually when im dealing with this field directly i do something like DATE(LEFT(clientinfo.first_run_date,10)).
its unclear to me where the best place to change this might be. naively i think we would want to make the change to bigquery-etl but that would require a schema update etc. on the other logical extreme we could extend the views in spoke-default to include the date version. a glance at the code in this repo makes me think handling it here would create a special case that we might not want.
The text was updated successfully, but these errors were encountered:
The intention of adding parsed_ variants was that we'd still have the underlying values available. There has been a discoverability problem, though, as many folks don't know to look for parsed fields.
this field is a string in the underlying table, it has format e.g. 2021-09-30+02:00. usually when im dealing with this field directly i do something like
DATE(LEFT(clientinfo.first_run_date,10))
.its unclear to me where the best place to change this might be. naively i think we would want to make the change to bigquery-etl but that would require a schema update etc. on the other logical extreme we could extend the views in spoke-default to include the date version. a glance at the code in this repo makes me think handling it here would create a special case that we might not want.
The text was updated successfully, but these errors were encountered: