From 3094ab90bb672ba53bf104cc30d8dff18dd9d258 Mon Sep 17 00:00:00 2001 From: Doug Beatty Date: Tue, 10 Dec 2024 15:54:53 -0700 Subject: [PATCH] `hard_deletes` config and `new_record` option for snapshots --- tests/functional/adapter/test_simple_snapshot.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/functional/adapter/test_simple_snapshot.py b/tests/functional/adapter/test_simple_snapshot.py index 4db5b2330..afa2175b0 100644 --- a/tests/functional/adapter/test_simple_snapshot.py +++ b/tests/functional/adapter/test_simple_snapshot.py @@ -1,4 +1,7 @@ from dbt.tests.adapter.simple_snapshot.test_snapshot import BaseSnapshotCheck, BaseSimpleSnapshot +from dbt.tests.adapter.simple_snapshot.new_record_mode import ( + SnapshotNewRecordMode, +) class TestSnapshot(BaseSimpleSnapshot): @@ -7,3 +10,7 @@ class TestSnapshot(BaseSimpleSnapshot): class TestSnapshotCheck(BaseSnapshotCheck): pass + + +class TestSnowflakeSnapshotNewRecordMode(SnapshotNewRecordMode): + pass