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
When writing to BigQuery in payload format (tables in *_live datasets), field names are normalized to snake_case, and it's currently possible to have multiple fields that map to the same normalized value, as seen in #1297 (comment).
Desired behavior: when ip and ip_ are both present the value for ip should be preserved, while ip_ should be sent to additional_properties.
Current behavior: the last successfully coerced non-null value will be preserved, and other values will only be sent to additional_properties if they failed to be coerced.
The text was updated successfully, but these errors were encountered:
When writing to BigQuery in
payload
format (tables in*_live
datasets), field names are normalized to snake_case, and it's currently possible to have multiple fields that map to the same normalized value, as seen in #1297 (comment).Desired behavior: when
ip
andip_
are both present the value forip
should be preserved, whileip_
should be sent toadditional_properties
.Current behavior: the last successfully coerced non-null value will be preserved, and other values will only be sent to
additional_properties
if they failed to be coerced.The text was updated successfully, but these errors were encountered: