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
WITH vals AS
(
SELECT1 x, 'a' y UNION ALLSELECT1 x, 'b' y UNION ALLSELECT2 x, 'a' y UNION ALLSELECT2 x, 'c' y
)
SELECT x, ARRAY_AGG(y) as array_agg
FROM vals
GROUP BY x;
DataFusion error: This feature is not implemented: UNION ALL expected 2 inputs, but found 4
BigQuery function reference
https://cloud.google.com/bigquery/docs/reference/standard-sql/aggregate_functions#array_agg
The text was updated successfully, but these errors were encountered: