Skip to content

Commit 1ccd5cf

Browse files
committed
typos
1 parent 04dafe1 commit 1ccd5cf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dbt/include/iris/macros/materializations/incremental/incremental.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
-- BEGIN, in a separate transaction
2222
{%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation)-%}
2323
{%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}
24-
-- grab current tables grants config for comparision later on
24+
-- grab current tables grants config for comparison later on
2525
{% set grant_config = config.get('grants') %}
2626
{{ drop_relation_if_exists(preexisting_intermediate_relation) }}
2727
{{ drop_relation_if_exists(preexisting_backup_relation) }}

dbt/include/iris/macros/materializations/table.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
{%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}
1717
-- as above, the backup_relation should not already exist
1818
{%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}
19-
-- grab current tables grants config for comparision later on
19+
-- grab current tables grants config for comparison later on
2020
{% set grant_config = config.get('grants') %}
2121

2222
-- drop the temp relations if they exist already in the database

dbt/include/iris/macros/materializations/view.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{#
22

33
{% materialization view, adapter='iris' -%}
4-
-- grab current tables grants config for comparision later on
4+
-- grab current tables grants config for comparison later on
55
{% set grant_config = config.get('grants') %}
66

77
{% set to_return = iris__create_or_replace_view() %}

tests/functional/basic/test_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
simple_model_yml = """
1717
models:
1818
- name: simple_model
19-
description: "is sythentic data ok? my column:"
19+
description: "is synthetic data ok? my column:"
2020
columns:
2121
- name: my_column
2222
description: asked and answered

0 commit comments

Comments
 (0)