Skip to content

Commit

Permalink
fixed MaterializedView creation
Browse files Browse the repository at this point in the history
  • Loading branch information
Arne Ottens committed Sep 18, 2023
1 parent 7aaf2d7 commit d9fdfa2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/sepdpc/repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,7 @@ def _product_struct_to_data_product(product_struct: ProductStruct, domain_id: st
description=ds.summary,
definitionQuery=ds.query,
columns=ds.columns,
refresh_interval=ds.materialization.refresh_interval,
incremental_columns=ds.materialization.incremental_column))
definitionProperties=ds.materialization))

data_product.views = dp_view if dp_view else None
data_product.materializedViews = dp_mat_view if dp_mat_view else None
Expand Down

1 comment on commit d9fdfa2

@lubertroxas
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like this commit removed the materialization parameters again.

Please sign in to comment.