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
{{ message }}
This repository was archived by the owner on Mar 5, 2026. It is now read-only.
We create a table with multiple fields, and add bgUid field with default value: GENERATE_UUID(), when jsonWriter.appendRows, field bgUid is not included in json list. We assume one UUID should be generated as the default value, while the value we got is null.
After filter the field from TableMetadata, default values will take effect. This is not expected. It is expected that when one field is not defined, the default value will take effect. And that is also what the bigquery API do.
Hi,
We create a table with multiple fields, and add bgUid field with default value: GENERATE_UUID(), when jsonWriter.appendRows, field bgUid is not included in json list. We assume one UUID should be generated as the default value, while the value we got is null.
After filter the field from TableMetadata, default values will take effect. This is not expected. It is expected that when one field is not defined, the default value will take effect. And that is also what the bigquery API do.
Code to filter field:
Thanks,