-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support --empty option for 'snapshot' command (#10962)
- Loading branch information
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: Features | ||
body: Support --empty for snapshots | ||
time: 2024-10-31T16:31:49.926164-04:00 | ||
custom: | ||
Author: gshank | ||
Issue: "10372" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import pytest | ||
|
||
from dbt.tests.util import run_dbt | ||
|
||
my_model_sql = """ | ||
select 1 as id, {{ dbt.current_timestamp() }} as updated_at | ||
""" | ||
|
||
snapshots_yml = """ | ||
snapshots: | ||
- name: my_snapshot | ||
relation: "ref('my_model')" | ||
config: | ||
unique_key: id | ||
strategy: check | ||
check_cols: all | ||
dbt_valid_to_current: "date('9999-12-31')" | ||
""" | ||
|
||
|
||
class TestSnapshotEmpty: | ||
@pytest.fixture(scope="class") | ||
def models(self): | ||
return { | ||
"my_model.sql": my_model_sql, | ||
"snapshots.yml": snapshots_yml, | ||
} | ||
|
||
def test_check(self, project): | ||
run_dbt(["run"]) | ||
run_dbt(["snapshot", "--empty"]) | ||
|
||
query = "select id, updated_at, dbt_valid_from, dbt_valid_to from {database}.{schema}.my_snapshot order by updated_at asc" | ||
snapshot_out1 = project.run_sql(query, fetch="all") | ||
assert snapshot_out1 == [] | ||
|
||
run_dbt(["run"]) | ||
run_dbt(["snapshot", "--empty"]) | ||
snapshot_out2 = project.run_sql(query, fetch="all") | ||
assert snapshot_out2 == [] |