With an ingestion time partitioned table it's possible to query for the count of rows per partition for free. Bytes billed of 0.
SELECT DATE(_PARTITIONTME) AS dd, COUNT(*) FROM ds.ingestion_time_partitioned GROUP BY dd
# free
With a column based time partitioned table the equivalent query costs what I'd expect for reading in the column (not free).
SELECT DATE(_timestamp) AS dd, COUNT(*) FROM ds.column_time_partitioned GROUP BY dd
# not free
Is there any way to run the second query so it's free? I kinda assumed the two tables are structured similarly, so whatever metadata allows the first query to be free would also exist in the second table.