Skip to content

Commit

Permalink
Support incremental materialization on Vertica
Browse files Browse the repository at this point in the history
  • Loading branch information
mpcarter committed Nov 5, 2020
1 parent b341814 commit 6f82f5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions dbt/include/vertica/macros/adapters.sql
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@

create {% if temporary: -%}local temporary{%- endif %} table
{{ relation.include(database=(not temporary), schema=(not temporary)) }}
{% if temporary: -%}on commit preserve rows{%- endif %}
as (
{{ sql }}
);
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pathlib

package_name = "dbt-vertica"
package_version = "0.18.0"
package_version = "0.18.1"
description = """The vertica adapter plugin for dbt (data build tool)"""

HERE = pathlib.Path(__file__).parent
Expand All @@ -29,7 +29,7 @@
]
},
install_requires=[
'dbt-core>=0.18.0',
'dbt-core~=0.18.0',
'vertica-python>=0.10.0',
]
)

0 comments on commit 6f82f5f

Please sign in to comment.