Happy Monday and international horse day 🐴
This release of the dbt_salesforce_formula_utils
package includes the following updates:
Features
- Incorporated a new boolean argument (
using_quoted_identifiers
) to thesfdc_formula_view
macro. This argument allows users to quote the compiled sql generated by the macro. This is especially necessary when a users warehouse has case sensitivity enabled. If a user has a warehouse with case sensitivity, they will likely see the macro fail by default. If this is the case, you will want to set theusing_quoted_identifiers
argument totrue
(the argument isfalse
by default). (#72) - Updated documentation within the README for easier understanding of the macros and how to use them in a dbt project. (#70)
Under the Hood
- Added BuildKite integration tests. (#72)
- Added the
docs
folder for dbt docs hosting on GitHub Pages. (#72) - Upgraded dbt-expectations dependency within the package integration_tests to the
[">=0.8.0", "<0.9.0"]
range. (#72)