From 86531c913b3e1623aea0ff5036e24afa86524c91 Mon Sep 17 00:00:00 2001 From: Gerda Shank Date: Tue, 19 Nov 2024 11:27:14 -0500 Subject: [PATCH] remove instrumentation --- .../macros/materializations/snapshots/snapshot.sql | 2 -- 1 file changed, 2 deletions(-) diff --git a/dbt/include/global_project/macros/materializations/snapshots/snapshot.sql b/dbt/include/global_project/macros/materializations/snapshots/snapshot.sql index 00bada5d..0c9590b6 100644 --- a/dbt/include/global_project/macros/materializations/snapshots/snapshot.sql +++ b/dbt/include/global_project/macros/materializations/snapshots/snapshot.sql @@ -30,10 +30,8 @@ {% if not target_relation_exists %} {% set build_sql = build_snapshot_table(strategy, model['compiled_code']) %} - {{ log("--- build_sql: " ~ build_sql, info=true) }} {% set build_or_select_sql = build_sql %} {% set final_sql = create_table_as(False, target_relation, build_sql) %} - {{ log("--- final_sql: " ~ final_sql, info=true) }} {% else %}