Anders
Anders
somewhat related to #9320?
@aBBDnGus are you using Snowflake? Is so, I feel that this is already covered in https://github.com/dbt-labs/dbt-snowflake/issues/715. I do agree that we should address this! My suggestion is that we first...
adding @chwiese's take from an [internal Slack thread](https://dbt-labs.slack.com/archives/C03AV98FU5C/p1692380565978249) > I do not think dbt should automatically set usage (or any other grants) on schemata. The key reason is that dbt...
see https://github.com/dbt-labs/dbt-bigquery/issues/1138#issuecomment-2018762523
thanks for opening @kiwamizamurai! Your example was excellent, I was able to reproduce! AFAICT,column-level docs persistence was first introduced via https://github.com/dbt-labs/dbt-core/pull/2402. The comment above `bigquery__persist_docs` is telling: https://github.com/dbt-labs/dbt-bigquery/blob/955afbd74b19d37f6c7919a4a92dd2cc50eae905/dbt/include/bigquery/macros/adapters.sql#L98-L99 From this,...
> So, I should use .update_table_description() instead of . alter_table_comment() in my PR #1139. Yeah give it a try? Maybe `.update_table_description()` doesn't work right and we need to change or...
### reproduction I was able to reproduce this by creating a `brother_ptouch.sql` model like the below. ```sql --brother_ptouch.sql {{ config( materialized = "table", labels = {'contains_pii':''} ) }} SELECT "brother"...
@xemuliam https://github.com/dbt-labs/dbt-bigquery/pull/1154's addition of the `[pandas]` option might make the difference? You're right that I don't see much else going on. I'll flag this internally though, but I'm not sure...
Thanks for opening @SPTKL --- I'm glad you're finding the `clone` command useful. My concern here is predominately user-experience-related, namely > when is `--full-refresh` required, and when isn't it? Allow...
so this chunk of code in dbt-bigquery's view materialization will need to somehow make it into the "materialized_view" materialization. https://github.com/dbt-labs/dbt-bigquery/blob/955afbd74b19d37f6c7919a4a92dd2cc50eae905/dbt/include/bigquery/macros/materializations/view.sql#L21-L25