Dmitry Volodin

Results 4 issues of Dmitry Volodin

### Describe the feature Currently merge **conditions** are not supported in merge strategy. If following the Databricks terminology, merge conditions are `matched_conditions` and `not_matched_conditions` in `MERGE` definition. Taken from DBricks...

enhancement
help wanted
incremental models

I have this issue for the following peace of code ```python class TestMatchedAndNotMatchedConditions(IncrementalBase): @pytest.fixture(scope="class") def seeds(self): return { "matched_and_not_matched_conditions_expected.csv": fixtures.matched_and_not_matched_conditions_expected, } @pytest.fixture(scope="class") def models(self): return { "matched_and_not_matched_conditions.sql": fixtures.matched_and_not_matched_conditions_model, } def...

bug

This is a backport of the changes introduced in #1079 and #1095. Not everything is applied cleanly as there are some major changes between 1.9 and 1.10 in terms of...

Resolves #949 ### Description This PR extends the capability of Merge strategy configuration and allow to completely override actions block with an explicit statement. E.g. it allows to define multiple...