Skip to content

Commit

Permalink
Temporarily hard-code case-insensitive seed name for Snowflake
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeatty10 committed Nov 19, 2024
1 parent 8a5d49f commit 6555df6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ sources:
database: {{ target.database }}
schema: {{ raw_schema }}
tables:
- name: {%- if target.type == "snowflake" -%}DATA__CASE_SENSITIVE{%- else -%}data__Case_Sensitive{%- endif -%}
- name: {% if target.type == "snowflake" %}DATA__CASE_SENSITIVE{% else %}data__Case_Sensitive{% endif %}
columns:
- name: Col_A
data_type: {{ integer_type_value() }}
Expand Down

0 comments on commit 6555df6

Please sign in to comment.