Skip to content

Commit

Permalink
default microbatch: not implemented error
Browse files Browse the repository at this point in the history
  • Loading branch information
MichelleArk committed Sep 11, 2024
1 parent 96b4907 commit 7a7ce3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def assert_row_count(self, project, relation_name: str, expected_row_count: int)
@mock.patch.dict(os.environ, {"DBT_EXPERIMENTAL_MICROBATCH": "True"})
def test_run_with_event_time(self, project):
# initial run -- backfills all data
with freeze_time("2020-01-01 13:57:00"):
with freeze_time("2020-01-03 13:57:00"):
run_dbt(["run"])
self.assert_row_count(project, "microbatch_model", 3)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

{% macro default__get_incremental_microbatch_sql(arg_dict) %}

{% do return(get_microbatch_sql(arg_dict) %}
{{ exceptions.raise_not_implemented('microbatch materialization strategy not implemented for adapter ' + adapter.type()) }}

{% endmacro %}

Expand Down

0 comments on commit 7a7ce3f

Please sign in to comment.