dbt-audit-helper
dbt-audit-helper copied to clipboard
Fix ambiguous column name warning
When using this package, I got an ambiguous column name warning message from audit_helper/macros/compare_relation_columns.sql line 24 "full outer join b_cols using (column_name)"
I believe this can be fixed by joining with 'on' rather than 'using' - "full outer join b_cols on a_cols.column_name = b_cols.column_name"