I am connecting to BigQuery tables using dbplyr
and the tables are partitioned, usually by date or time (the column is called _PARTITIONDATE or _PARTITIONTIME). In BigQuery, you can filter using the WHERE _PARTITIONDATE > "some date" to access segments of the table and improve query performance.
But when I connect to a table via dbplyr
, there is no partition column on which to filter. Is this expected behavior?