Skip to content

Commit

Permalink
Support MV backfills without effective datetime
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Mahlberg committed Sep 17, 2024
1 parent 7173133 commit 40b33c9
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 @@ -24,7 +24,7 @@ public class MaterializedView : IKustoBaseEntity

public List<DatabaseScriptContainer> CreateScripts(string name, bool isNew)
{
var asyncSetup = isNew && Backfill == true && !string.IsNullOrWhiteSpace(EffectiveDateTime);
var asyncSetup = isNew && Backfill == true;


var excludedProperies = new HashSet<string>(["Query", "Source", "Kind", "RetentionAndCachePolicy", "RowLevelSecurity"]);
Expand Down

0 comments on commit 40b33c9

Please sign in to comment.