Skip to content

Commit

Permalink
Merge pull request #87 from dbt-msft/test-#85
Browse files Browse the repository at this point in the history
collate tempdb columns to db default
  • Loading branch information
mikaelene authored Jan 20, 2021
2 parents 5a1f689 + b4c555c commit ae919d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dbt/include/sqlserver/macros/adapters.sql
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@
UNION ALL
select
ordinal_position,
column_name,
data_type,
column_name collate database_default,
data_type collate database_default,
character_maximum_length,
numeric_precision,
numeric_scale
Expand All @@ -219,4 +219,4 @@
{% macro sqlserver__snapshot_string_as_time(timestamp) -%}
{%- set result = "CONVERT(DATETIME2, '" ~ timestamp ~ "')" -%}
{{ return(result) }}
{%- endmacro %}
{%- endmacro %}

0 comments on commit ae919d9

Please sign in to comment.