Skip to content

Commit 9c2be85

Browse files
niteshyNitesh Yadav
andauthored
DBT-698: Removing the optional semicolon, that doesn't work with impala UA (#173)
Co-authored-by: Nitesh Yadav <[email protected]>
1 parent dfb3c57 commit 9c2be85

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dbt/include/impala/macros/adapters.sql

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@
171171
{{ ct_option_tbl_properties(label="tblproperties") }}
172172
as
173173
{{ sql }}
174-
;
175174
{%- endmacro %}
176175

177176
{% macro impala__create_view_as(relation, sql) -%}
@@ -186,7 +185,6 @@
186185
{{ ct_option_comment_relation(label="comment") }}
187186
as
188187
{{ sql }}
189-
;
190188
{%- endmacro %}
191189

192190
{% macro impala__create_schema(relation) -%}
@@ -257,7 +255,7 @@
257255
drop table if exists {{ to_relation }}
258256
{% endcall %}
259257
{% call statement('drop_relation_if_exists_view') %}
260-
drop view if exists {{ to_relation }};
258+
drop view if exists {{ to_relation }}
261259
{% endcall %}
262260
{% call statement('rename_relation') -%}
263261
{% if not from_rel_type %}

0 commit comments

Comments
 (0)