Open
Description
Is this a new bug in dbt-core?
- I believe this is a new bug in dbt-core
- I have searched the existing issues, and I could not find an existing issue for this bug
Current Behavior
When I configure grants in dbt for a postgres database and a db role like 'foo-bar' I get postgres syntax errors because the name is not quoted.
If I try to quote it like "\"foo-bar\"" it works for the grants part but breaks in the incremental grants part. Looks like some places do not strip and some places do strip those extra quotes I added to my db role name.
Expected Behavior
I should not have to put in extra quotes - dbt should be able to create the appropriate database syntax for supported role names.
Steps To Reproduce
Create a postgres role with dashes in the name.
Try to have dbt assign grants to that user - it will break.
Add manual quotes - it will work.
Try to make a incremental model with those same grants - it will break.
Relevant log output
No response
Environment
- OS: macOS ventura 13.6
- Python: 3.10.12
- dbt: 1.6.2
Which database adapter are you using with dbt?
postgres
Additional Context
No response