Skip to content

Commit

Permalink
DBT-698: Removing the optional semicolon, that doesn't work with impa…
Browse files Browse the repository at this point in the history
…la UA (#173)

Co-authored-by: Nitesh Yadav <[email protected]>
  • Loading branch information
niteshy and Nitesh Yadav authored Jun 7, 2023
1 parent dfb3c57 commit 9c2be85
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions dbt/include/impala/macros/adapters.sql
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@
{{ ct_option_tbl_properties(label="tblproperties") }}
as
{{ sql }}
;
{%- endmacro %}

{% macro impala__create_view_as(relation, sql) -%}
Expand All @@ -186,7 +185,6 @@
{{ ct_option_comment_relation(label="comment") }}
as
{{ sql }}
;
{%- endmacro %}

{% macro impala__create_schema(relation) -%}
Expand Down Expand Up @@ -257,7 +255,7 @@
drop table if exists {{ to_relation }}
{% endcall %}
{% call statement('drop_relation_if_exists_view') %}
drop view if exists {{ to_relation }};
drop view if exists {{ to_relation }}
{% endcall %}
{% call statement('rename_relation') -%}
{% if not from_rel_type %}
Expand Down

0 comments on commit 9c2be85

Please sign in to comment.