Replies: 1 comment
-
SQL Server is the only dialect I've seen use [] so there is a background cross-dialect / personnel training consideration in the background. Since these are being added programmatically, I'm not sure how much it would be considered to matter until it actually blocks functionality or causes a bug. Since the adapter is in use already and Microsoft at least knows of its existence, I assume that quotes work fine. I recommend moving this issue to the relevant adapter library. Because the database adapters aren't in dbt-core you'll get better response there. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It seems that the
dbt-fabric
adapter methodadapter.quote()
compiles quoted identifiers to"column name"
, not[column name]
as I was expecting. At least to me this was confusing, since the documentation is quite consistent on using bracket delimiters. The quotation marks delimiters also departs from our current naming convention. Is this an issue, or should we just accept and move on?Beta Was this translation helpful? Give feedback.
All reactions