From d25815640236a2ca160ab07fa3d304d9a60ec6ee Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Tue, 26 Sep 2023 18:39:20 -0500 Subject: [PATCH] Update core/dbt/include/global_project/macros/adapters/columns.sql Co-authored-by: colin-rogers-dbt <111200756+colin-rogers-dbt@users.noreply.github.com> --- core/dbt/include/global_project/macros/adapters/columns.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dbt/include/global_project/macros/adapters/columns.sql b/core/dbt/include/global_project/macros/adapters/columns.sql index 1487acc8efd..44c8942a667 100644 --- a/core/dbt/include/global_project/macros/adapters/columns.sql +++ b/core/dbt/include/global_project/macros/adapters/columns.sql @@ -48,7 +48,7 @@ {%- set col = columns[i] -%} {%- if col['data_type'] is not defined -%} {%- do col_err.append(col['name']) -%} - {#-- If this column's type is just 'numeric' missing precision/scale, raise a warning --#} + {#-- If this column's type is just 'numeric' then it is missing precision/scale, raise a warning --#} {#- elif api.Column.create(col['name'], col['data_type'].strip()).is_numeric() -#} {%- elif col['data_type'].strip().lower() in ('numeric', 'decimal', 'number') -%} {%- do col_naked_numeric.append(col['name']) -%}