
templates.write-strategies.spark.overwrite.j2 Maven / Gradle / Ivy
{% if materializedView == 'MATERIALIZED_VIEW' %}
DROP MATERIALIZED VIEW IF EXISTS {{ tableFullName }};
CREATE MATERIALIZED VIEW {{ tableFullName }} AS {{ selectStatement }}
{% elif tableFormat == 'delta' %}
DELETE FROM {{ tableFullName }};
INSERT INTO {{ tableFullName }} {{ selectStatement }}
{% else %}
TRUNCATE TABLE {{ tableFullName }};
INSERT INTO {{ tableFullName }} {{ selectStatement }}
{% endif %}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy