BigQuery supports repeating, array columns. These can be expanded (“flattened”) by using the FLATTEN function. Since pricing in BigQuery is bound to the size of the dataset (the used column to be more precise), does flattening make my queries more expensive since it affects the size of the dataset?
BigQuery supports repeating, array columns. These can be expanded (flattened) by using the FLATTEN
Share
No, flattening doesn’t affect the cost, since it doesn’t actually expand the amount of data needed to be read by BigQuery.