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
BigQuery backend's create_table method has two issues on its partition_by parameter.
The parameter is typed as str, but it expects an iterable of str.
The parameter is documented to accept BQ DDL for specifying partitions, but it attempts to backtick-quote the values that are passed in, which invalidates some partitioning DDL, such as DATE_TRUNC(<date_column>, MONTH)