Doug Beatty
Doug Beatty
Thanks for trying @sophiad96 ! From the information we have, this looks the same as https://github.com/dbt-labs/dbt-core/issues/4233 (and https://github.com/dbt-labs/dbt-core/issues/8775). So I'm going to close this one as a duplicate. If we...
@jtcohen6 is there a project flag in `dbt_project.yml` for `--include-saved-query` that needs to be updated as well?
### Suspected root cause I suspect that the [`noop_statement`](https://github.com/dbt-labs/dbt-adapters/blob/863eb05880811eba8b824bdf68c431f316533e85/dbt/include/global_project/macros/etc/statement.sql#L30-L42) called for the seed materialization [here](https://github.com/dbt-labs/dbt-adapters/blob/863eb05880811eba8b824bdf68c431f316533e85/dbt/include/global_project/macros/materializations/seeds/seed.sql#L36-L38) isn't including query comments for some reason. However, regular `statement` [does include the query comments](https://github.com/dbt-labs/dbt-adapters/blob/863eb05880811eba8b824bdf68c431f316533e85/dbt/adapters/sql/connections.py#L150-L151)...
Thanks for reaching out about this @digitalghost-dev ! And thanks for testing out that code change as well 🤩 I tried to replicate this error, but running `dbt init` worked...
Thanks for testing that out @digitalghost-dev 💪 The root cause appears to be that `dir` is expected to be a string [here](https://github.com/dbt-labs/dbt-core/blob/29395ac6170f4068a622802f87852b3566415997/core/dbt/events/types.py#L130-L135) and [here](https://github.com/dbt-labs/dbt-core/blob/29395ac6170f4068a622802f87852b3566415997/core/dbt/events/core_types.proto#L185-L188). A minimal fix might be updating...
I think we should add sources (and analyses) to `fqn:*`. Reasons below. ### Research I've only been able to find two resource types that are **not** included by `dbt list...
@graciegoheen I added an implementation issue for this with acceptance criteria: - https://github.com/dbt-labs/dbt-core/issues/10053
Thanks for reaching out @mrcool4 ! I'm not quite following. Could you create a simple example and provide all the code and commands required to execute it? That will help...
Heya @epapineau 👋 This looks the same to me as needing to [force dependencies](https://docs.getdbt.com/reference/dbt-jinja-functions/ref#forcing-dependencies) like this: ```sql -- depends_on: {{ ref('some_model') }} {{ generate_model_sql() }} ``` If you don't do...
After touching base with @gshank, I can confirm that it's known behavior that we don't track model `ref`s when they are in a macro. So I'm going to update this...