Skip to content

Commit

Permalink
Fix MV rollouts
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Mahlberg committed Oct 14, 2024
1 parent a0bbde0 commit a042817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KustoSchemaTools/Model/MaterializedView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public List<DatabaseScriptContainer> CreateScripts(string name, bool isNew)
var asyncSetup = isNew && Backfill == true;


var excludedProperies = new HashSet<string>(["Query", "Source", "Kind", "RetentionAndCachePolicy", "RowLevelSecurity"]);
var excludedProperies = new HashSet<string>(["Query", "Source", "Kind", "RetentionAndCachePolicy", "RowLevelSecurity", "Policies"]);
if (!asyncSetup)
{
excludedProperies.Add("EffectiveDateTime");
Expand Down

0 comments on commit a042817

Please sign in to comment.