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
This macro needs to be reimplemented on dbt-bigquery in order to use column.data_type, instead of column.dtype (default implementation). The former handles complex/repeated data types, e.g. ARRAY<STRING>, where the latter reports back only STRING.
The text was updated successfully, but these errors were encountered:
Update
bigquery__format_column
macro in accordance with the changes in dbt-labs/dbt-core#7319, to enable a prettierContractError
message.Rather than just returning
<column_name> <data_type>
as a string, the macro should return a dictionary containing:This macro needs to be reimplemented on
dbt-bigquery
in order to usecolumn.data_type
, instead ofcolumn.dtype
(default implementation). The former handles complex/repeated data types, e.g.ARRAY<STRING>
, where the latter reports back onlySTRING
.The text was updated successfully, but these errors were encountered: