From f25f8ea7ac1dcde6dcdbda2e4be96f7546f7062d Mon Sep 17 00:00:00 2001 From: Doug Beatty Date: Tue, 10 Dec 2024 16:04:36 -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(+) create mode 100644 tests/functional/adapter/test_simple_snapshot.py diff --git a/tests/functional/adapter/test_simple_snapshot.py b/tests/functional/adapter/test_simple_snapshot.py new file mode 100644 index 000000000..2e695985c --- /dev/null +++ b/tests/functional/adapter/test_simple_snapshot.py @@ -0,0 +1,7 @@ +from dbt.tests.adapter.simple_snapshot.new_record_mode import ( + SnapshotNewRecordMode, +) + + +class TestSparkSnapshotNewRecordMode(SnapshotNewRecordMode): + pass