Related to r-dbi/bigrquery#646
The bigrquery json api is able to download ranges as a character type.
bq_project_query(billing, "SELECT RANGE(DATE '2024-01-01', DATE '2025-01-01') AS Year_Range") |>
bq_table_download(api = "json")
However, the newly-implemented arrow api fails
bq_project_query(billing, "SELECT RANGE(DATE '2024-01-01', DATE '2025-01-01') AS Year_Range") |>
bq_table_download(api = "arrow")
