Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Invalid Quoting Around Partitioning (#277)
### Summary When using `partition_by`, dbt-dremio could be causing invalid statements to partition columns, surrounding the way quotation was being handled. ### Description The sistematic double quoting has been removed from the connector's logic, stopping such situations from happening and leaving quotation to be decided by the user. An example of a table materialization under this new logic is: ``` {{ config( materialized = 'table', partition_by = ['forecast_effective_date', 'year("datetime_utc")', 'month("datetime_hour_ending_utc")'] ) }} ``` ### Test Results n/a ### Changelog - [X] Added a summary of what this PR accomplishes to CHANGELOG.md ### Contributor License Agreement <!--- Applicable for non Dremio employees and for first time contributors --> - [X] Please make sure you have signed our [Contributor License Agreement](https://www.dremio.com/legal/contributor-agreement/), which enables Dremio to distribute your contribution without restriction. ### Related Issue #201
- Loading branch information