[X] I have searched the existing issues, and I could not find an existing issue for this bug
Current Behavior
when running dbt docs generate we are getting an error, but when using version 1.8.2 of the adapter it works like a charm.
This is the error:
Encountered an error while generating catalog: Table type cannot be None for table XXXXXXX.bronze_dev.events_mp_master_event
I can see it is happening only when trying to generate catalog in target dev, and it seems like it is affected by another source which inside it we use:
schema: "{{ 'bronze_dev' if target.name == 'dev' else 'bronze_prod' }}"
but in the source events_mp_master_event we use just:
schema: bronze_prod
Is this a new bug in dbt-athena?
Current Behavior
when running dbt docs generate we are getting an error, but when using version 1.8.2 of the adapter it works like a charm. This is the error: Encountered an error while generating catalog: Table type cannot be None for table XXXXXXX.bronze_dev.events_mp_master_event
I can see it is happening only when trying to generate catalog in target dev, and it seems like it is affected by another source which inside it we use: schema: "{{ 'bronze_dev' if target.name == 'dev' else 'bronze_prod' }}"
but in the source events_mp_master_event we use just: schema: bronze_prod
so why it is affecting it?
Expected Behavior
dbt docs generate works as before
Steps To Reproduce
No response
Environment
Additional Context
No response