79576176

Date: 2025-04-15 23:31:01
Score: 1
Natty:
Report link

unnest the field before you do the export so that is resembles a flat table (csv, etc). Looks like you have an array_agg(struct(.., ..)) fields (called _headers and data) in your source table, see error, e.g.:
_headers.sourceId AS sourceId, _headers.uid AS uid, _headers.messageId AS messageId

unnest these columns and you should be good to go.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: pmo511